Android 1.6:“ android.view.WindowManager $ BadTokenException:无法添加窗口-令牌null不适用于应用程序”


303

我试图打开一个对话框窗口,但是每次我尝试打开它时,都会引发此异常:

Uncaught handler: thread main exiting due to uncaught exception
android.view.WindowManager$BadTokenException: 
     Unable to add window -- token null is not for an application
  at android.view.ViewRoot.setView(ViewRoot.java:460)
  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
  at android.app.Dialog.show(Dialog.java:238)
  at android.app.Activity.showDialog(Activity.java:2413)

我通过showDialog使用显示器的ID 进行调用来创建它。该onCreateDialog处理程序的日志记录很好,我可以毫无问题地逐步解决它,但是我附上了它,因为似乎我缺少了一些东西:

@Override
public Dialog onCreateDialog(int id)
{
    Dialog dialog;
    Context appContext = this.getApplicationContext();
    switch(id)
    {
        case RENAME_DIALOG_ID:
            Log.i("Edit", "Creating rename dialog...");
            dialog = new Dialog(appContext);
            dialog.setContentView(R.layout.rename);
            dialog.setTitle("Rename " + noteName);
            break;
        default:
            dialog = null;
            break;
    }
    return dialog;      
}

这还缺少什么吗?一些问题涉及从创建对话框时出现此问题onCreate,这是由于尚未创建活动而发生的,但这是来自菜单对象的调用,并且该appContext变量似乎已在调试器中正确填充。

Answers:


609

而不是: Context appContext = this.getApplicationContext(); 您应该使用指向您正在从事的活动的指针(可能是this)。

我今天也被这个咬了,烦人的部分是getApplicationContext()来自developer.android.com的逐字记录:(


2
它也被报告为错误(尽管不是在用户发布问题时出现的):code.google.com/p/android/issues/detail?id=11199
Raymond Martineau

63
以防万一这对任何人都有帮助-将myActivity.this用作对话框中的上下文。
拉布·罗斯

13
该问题和答案在2天内变成3岁。我仍然获得声誉,所以我猜Google仍然没有修复他们的文档...
Torp


6
这是2016年4月,仍然是此异常,导致应用程序在启动对话框时崩溃。
Yogesh Seralia '16

78

您不能通过不是活动的上下文显示应用程序窗口/对话框。尝试传递有效的活动参考


怎么样?我试过了activity.thisactivity.getBaseContext()但无济于事。有什么帮助吗?
达尔潘(Darpan)

3
得到它了。直接在其中传递您的活动名称。没有.this
达尔潘(Darpan)

45

与getApplicationContext有关。

android站点上的文档说要使用它,但是不起作用... grrrrr :-P

做就是了:

dialog = new Dialog(this); 

“ this”通常是您从中启动对话框的Activity。


43

Android文档建议使用getApplicationContext();

但是在实例化AlertDialog.Builder或AlertDialog或Dialog时,它不能代替使用您的当前活动。

例如:

AlertDialog.Builder builder = new  AlertDialog.Builder(this);

要么

AlertDialog.Builder builder = new  AlertDialog.Builder((Your Activity).this);

这极大地帮助了我。我试图从另一个对话框中创建一个对话框,并且只有“ AlertDialog.Builder(this);” 给一个错误。谢谢!
EHarpham

(ActivityName.this)在尝试在按钮的onClick内部创建对话框时特别有用
RmK 2014年

我的问题是我要在Adapter内的AlertDialog内构建一个ProgressDialog ...我无法使其正常工作。
Martin Erlic '17


13

我有一个类似的问题,我还有另一个这样的课:

public class Something {
  MyActivity myActivity;

  public Something(MyActivity myActivity) {
    this.myActivity=myActivity;
  }

  public void someMethod() {
   .
   .
   AlertDialog.Builder builder = new AlertDialog.Builder(myActivity);
   .
   AlertDialog alert = builder.create();
   alert.show();
  }
}

大多数情况下都能正常工作,但有时会因相同的错误而崩溃。然后我意识到MyActivity我有...

public class MyActivity extends Activity {
  public static Something something;

  public void someMethod() {
    if (something==null) {
      something=new Something(this);
    }
  }
}

因为我将对象保持为static,所以第二次代码运行仍保留对象的原始版本,因此仍在引用原来Activity不存在的原始版本。

愚蠢的愚蠢错误,尤其是因为我真的不需要像static最初那样握住对象时……


12

只需将其更改为

AlertDialog.Builder alert_Categoryitem = 
    new AlertDialog.Builder(YourActivity.this);

代替

AlertDialog.Builder alert_Categoryitem = 
    new AlertDialog.Builder(getApplicationContext());

9

另一个解决方案是将窗口类型设置为系统对话框:

dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);

这需要获得SYSTEM_ALERT_WINDOW许可:

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

正如文档所说:

很少有应用程序应使用此权限;这些窗口用于与用户进行系统级交互。

仅当您需要未附加到活动的对话框时,才应使用此解决方案。


现在已从API级别26开始弃用该标志。因为它使开发人员可以使用系统窗口玩游戏,而这从用户角度来看是不好的。
CopsOnRoad '18

4

不要用于getApplicationContext()声明Dialouge

始终使用thisactivity.this


2

对于嵌套对话框,此问题非常普遍,

AlertDialog.Builder mDialogBuilder = new AlertDialog.Builder(MyActivity.this);

用于代替

mDialogBuilder = new AlertDialog.Builder(getApplicationContext);

这种选择。


2

这对我有用-

new AlertDialog.Builder(MainActivity.this)
        .setMessage(Html.fromHtml("<b><i><u>Spread Knowledge Unto The Last</u></i></b>"))
        .setCancelable(false)
        .setPositiveButton("Dismiss",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                    }
                }).show();

采用

ActivityName.this

0

您也可以这样做

public class Example extends Activity {
    final Context context = this;
    final Dialog dialog = new Dialog(context);
}

这对我有用!


0

如前所述,您需要一个“活动”作为对话框的上下文,使用“ YourActivity.this”作为静态上下文,或者在此处检查如何在安全模式下使用动态的


0

尝试将dialog窗口的类型重置为

WindowManager.LayoutParams.TYPE_SYSTEM_ALERT:
dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);

不要忘记使用权限 android.permission.SYSTEM_ALERT_WINDOW


0
public class Splash extends Activity {

    Location location;
    LocationManager locationManager;
    LocationListener locationlistener;
    ImageView image_view;
    ublic static ProgressDialog progressdialog;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);
        progressdialog = new ProgressDialog(Splash.this);
           image_view.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                        locationManager.requestLocationUpdates("gps", 100000, 1, locationlistener);
                        Toast.makeText(getApplicationContext(), "Getting Location plz wait...", Toast.LENGTH_SHORT).show();

                            progressdialog.setMessage("getting Location");
                            progressdialog.show();
                            Intent intent = new Intent(Splash.this,Show_LatLng.class);
//                          }
        });
    }


此输入文字:- 使用它获取activity上下文progressdialog

 progressdialog = new ProgressDialog(Splash.this);

要么 progressdialog = new ProgressDialog(this);

用这个来获取BroadcastListener 不是的应用上下文progressdialog

progressdialog = new ProgressDialog(getApplicationContext());
progressdialog = new ProgressDialog(getBaseContext());

0

为了避免内存泄漏问题,在AsyncTask中显示“ ProgressDialog”的最佳,最安全的方法是对Looper.main()使用“ Handler”。

    private ProgressDialog tProgressDialog;

然后在“ onCreate”中

    tProgressDialog = new ProgressDialog(this);
    tProgressDialog.setMessage(getString(R.string.loading));
    tProgressDialog.setIndeterminate(true);

现在,您已完成设置部分。现在在AsyncTask中调用“ showProgress()”和“ hideProgress()”。

    private void showProgress(){
        new Handler(Looper.getMainLooper()){
            @Override
            public void handleMessage(Message msg) {
                tProgressDialog.show();
            }
        }.sendEmptyMessage(1);
    }

    private void hideProgress(){
        new Handler(Looper.getMainLooper()){
            @Override
            public void handleMessage(Message msg) {
                tProgressDialog.dismiss();
            }
        }.sendEmptyMessage(1);
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.