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

    xiaoxiao2021-12-14  22


    报错场景

    在使用AlertDialog时产生此异常。


    原因

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

    import android.support.v7.app.AlertDialog;

    解决方法

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

    import android.app.AlertDialog;
    转载请注明原文地址: https://ju.6miu.com/read-968030.html

    最新回复(0)