java.lang.IllegalStateException: You need to use a Theme.AppCompat theme

来源:互联网 发布:网络上赌博赢了5千万 编辑:程序博客网 时间:2024/06/06 03:53

翻译自: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 。

错误截图如下:


0 0
原创粉丝点击