码迷,mamicode.com
首页 > 移动开发 > 详细

java.lang.IllegalStateException: You need to use a theme.appcompat theme (or descendant) with this activity

时间:2015-09-07 19:27:30      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:

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

产生原因:Activity继承自AppCompatActivity,在style.xml中使用了不兼容的Theme。

技术分享

从错误提示中提到Theme.AppCompat theme,这是因为我们的activity一定是继承了兼容包中的类,
比如我这里就无意中继承了AppCompatActivity,它来自android.support.v7.app.AppCompatActivity。
所以就要使用与其配合的AppCompat的theme才行。

解决:1、使用AppCompat theme;

   2、直接继承自Activity。

 

java.lang.IllegalStateException: You need to use a theme.appcompat theme (or descendant) with this activity

标签:

原文地址:http://www.cnblogs.com/diyishijian/p/4789667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!