本文主要是介绍报错 You need to use a Theme.AppCompat theme (or descendant) with this activity.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错如下:
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,然后导包,把下面报错的地方删掉运行就不报错了。。。
这篇关于报错 You need to use a Theme.AppCompat theme (or descendant) with this activity.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!