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

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

时间:2016-12-29 17:03:48      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:代码   end   .net   sdn   http   support   title   except   exce   

错误描述为:
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" >

http://blog.csdn.net/lincyang/article/details/42673151

2.如果不是那么强烈需要继承自ActionBarActivity,就直接继承Activity吧。问题自然搞定!

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

标签:代码   end   .net   sdn   http   support   title   except   exce   

原文地址:http://www.cnblogs.com/zhujiabin/p/6233412.html

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