Android问题集锦之二十八:You need to use a Theme.AppCompat theme (or descendant) with this activity.
Posted 全速前行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android问题集锦之二十八:You need to use a Theme.AppCompat theme (or descendant) with this activity.相关的知识,希望对你有一定的参考价值。
错误描述为:java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
起因:
我想在Manifest中设置我的activity全屏,代码如下:
<activity
android:name=".MainActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name" >
原因:
从错误提示中提到Theme.AppCompat theme,这是因为我们的activity一定是继承了兼容包中的类,
比如我这里就无意中继承了ActionBarActivity,它来自android.support.v7.app.ActionBarActivity。
所以就要使用与其配合的AppCompat的theme才行。
解决:
1.根据提示来使用AppCompat的theme,如下:
<activity
android:name=".MainActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:label="@string/app_name" >
不过我要设置全屏,但我并没有找到,所以虽然错误不见了,但并没有达到我的预期。
2.如果不是那么强烈需要继承自ActionBarActivity,就直接继承Activity吧。问题自然搞定! CSDN 社区图书馆,开张营业! 深读计划,写书评领图书福利~
以上是关于Android问题集锦之二十八:You need to use a Theme.AppCompat theme (or descendant) with this activity.的主要内容,如果未能解决你的问题,请参考以下文章