Xamarin Android.Views.WindowManagerBadTokenException: Unable to add window -- token android.os.BinderProxy

时间:2022-04-12 23:56:47

Android.Views.WindowManagerBadTokenException: Unable to add window -- token android.os.BinderProxy@

1,错误分析:

此问题根本原因是由于将要弹出的ddialog或Toast所要依附的View已经不存在导致的。

解决方案: 在当前的页面添加一个静态变量  static Context context;

创建 AlertDialog.Builder builder = new AlertDialog.Builder(context);

传入静态context

友情链接:http://www.aiuxian.com/article/p-383550.html