本文主要是介绍java.lang.IllegalStateException: You need to use a Theme.AppCompat theme,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
翻译自:http://stackoverflow.com/questions/21814825/you-need-to-use-a-theme-appcompat-theme-or-descendant-with-this-activity
中Bobbake4的回答:
The reason you are having this problem is because the activity you are trying to apply the dialog theme to is extending ActionBarActivity
which requires the AppCompat
theme to be applied.
Change the Java inheritance from ActionBarActivity
to Activity
and leave the dialog theme in the manifest as it is.
ActionBarActivity
改成Activity
。
错误截图如下:
这篇关于java.lang.IllegalStateException: You need to use a Theme.AppCompat theme的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!