异常报错: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.csdn.net/lincyang/article/details/42673151