异常报错:java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
我在使用Activity的半透明主题Theme的时候遇见。
原因:
从错误提示中提到Theme.AppCompat theme,这是因为我们的activity一定是继承了兼容包中的类,
比如我这里就无意中继承了ActionBarActivity,它来自android.support.v7.app.ActionBarActivity。
所以就要使用与其配合的AppCompat的theme才行。
解决方法:继承Activity,就解决了。也可以尝试修改Theme主题。
参考地址:http://blog.youkuaiyun.com/lincyang/article/details/42673151
本文介绍了在使用Android的Theme时遇到的You need to use a Theme.AppCompat theme (or descendant) with this activity.异常错误,并提供了详细的解决方案。该错误通常发生在继承了ActionBarActivity等兼容包中的类时,文章建议使用AppCompat主题或者直接继承Activity来解决这一问题。

被折叠的 条评论
为什么被折叠?



