我是 Android 的新手,可能我要问的是一个非常愚蠢的问题..所以请原谅我
创建 AlertDialog.... 标准方法是调用
AlertDialog alertDialog = new AlertDialog.Builder(Context here....).create();
然后
alertDialog.show();
但是我尝试了3种方法...
方式1
AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
方式2
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
方式3
AlertDialog alertDialog = new AlertDialog.Builder(this.getApplicationContext()).create();
前 2 个工作正常,但第 3 个给出了非法状态异常......
所以我的问题是为什么它给了????
谢谢