报错场景
在使用AlertDialog时产生此异常。
原因
Activity继承的是FragmentActivity,
而使用AlertDialog导入的包是android.support.v7.app.AlertDialog,造成不兼容
import android.support.v7.app.AlertDialog;
解决方法
使用AlertDialog时导入的包更改为android.app.AlertDialog即可。
import android.app.AlertDialog;
修复AlertDialog异常
本文介绍了一个在使用AlertDialog时遇到的常见异常及其解决方案。当Activity继承自FragmentActivity时,若使用了android.support.v7.app.AlertDialog可能会遇到兼容性问题。文章提供了简单的解决办法:更改导入包为android.app.AlertDialog。
462

被折叠的 条评论
为什么被折叠?



