天天看点

Activity主题设置问题 You need to use a Theme.AppCompat theme (or descendant) with this activity.

问题的产生:在android的开发中,想要为activity设置一个透明全屏的主题。在清单文件的相应的activity中用到了这个属性android:theme="@android:style/Theme.Translucent.NoTitleBar",运行时程序崩溃了,LogCat中的错误提示如下:

java.lang.RuntimeException: Unable to start activity ComponentInfo{cn.com.cyj.mobilesafe/cn.com.cyj.mobilesafe.DragViewActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

解决办法:我的activity是继承ActionBarActivity,修改为继承Activity就可以完美运行了。