You need to use a Theme.AppCompat theme (or descendant) with this activity

错误图片


报错场景

在使用AlertDialog时产生此异常。


原因

Activity继承的是FragmentActivity,
而使用AlertDialog导入的包是android.support.v7.app.AlertDialog,造成不兼容

import android.support.v7.app.AlertDialog;

解决方法

使用AlertDialog时导入的包更改为android.app.AlertDialog即可。

import android.app.AlertDialog;

猜你喜欢

转载自blog.csdn.net/adojayfan/article/details/53441196