【Android】You need to use a Theme.AppCompat theme (or descendant) with this activity解决方法

来源:互联网 发布:sql delete 编辑:程序博客网 时间:2024/04/28 18:11
原文http://www.cnblogs.com/jshen/p/3996071.html
报错如下:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.test2/com.example.test2.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

解决方法:

创建的activity是MainActivity extends ActionBarActivity这样的。把后面的ActionBarActivity改成Activity,然后导包,把下面报错的地方删掉运行就不报错了。。。

0 0