我的活动正在尝试创建一个AlertDialog,它需要一个上下文作为参数。如果我使用:

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

然而,我对使用“this”作为上下文持怀疑态度,因为即使在屏幕旋转这样简单的操作中,Activity被破坏和重新创建时,也有可能发生内存泄漏。来自Android开发者博客的相关文章:

There are two easy ways to avoid context-related memory leaks. The most obvious one is to avoid escaping the context outside of its own scope. The example above showed the case of a static reference but inner classes and their implicit reference to the outer class can be equally dangerous. The second solution is to use the Application context. This context will live as long as your application is alive and does not depend on the activities life cycle. If you plan on keeping long-lived objects that need a context, remember the application object. You can obtain it easily by calling Context.getApplicationContext() or Activity.getApplication().

但是对于AlertDialog(), getApplicationContext()或getApplication()都不能作为上下文,因为它会抛出异常:

"无法添加窗口-令牌null不是用于应用程序"

参考文献:1、2、3等。

所以,这真的应该被认为是一个“bug”,因为我们被正式建议使用Activity.getApplication(),但它并没有像宣传的那样发挥作用?

Jim


当前回答

对于以后的读者,这应该有帮助:

public void show() {
    if(mContext instanceof Activity) {
        Activity activity = (Activity) mContext;
        if (!activity.isFinishing() && !activity.isDestroyed()) {
            dialog.show();
        }
    }
}

其他回答

在活动中单击按钮显示一个对话框

Dialog dialog = new Dialog(MyActivity.this);

为我工作。

你可以继续使用getApplicationContext(),但在使用之前,你应该添加这个标志:dialog.getWindow(). settype (WindowManager.LayoutParams.TYPE_SYSTEM_ALERT),错误将不会显示。

将以下权限添加到您的清单:

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

尝试getParent()在上下文的参数位置,如new AlertDialog.Builder(getParent());希望它能起作用,它对我很有效。

你的对话框不应该是一个“需要上下文的长生命对象”。文档很混乱。基本上,如果你这样做:

static Dialog sDialog;

(注意静态)

然后在你参加的某个活动中

 sDialog = new Dialog(this);

您可能会在旋转或类似的过程中泄漏原始活动,从而破坏活动。(除非你在onDestroy中清理,但在这种情况下,你可能不会使Dialog对象静态)

对于某些数据结构,基于应用程序的上下文将它们设置为静态是有意义的,但对于与UI相关的东西,比如对话框,通常不是这样。就像这样:

Dialog mDialog;

...

mDialog = new Dialog(this);

很好,不应该泄漏活动,因为mDialog将与活动释放,因为它不是静态的。

添加

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

and

“android.permission。SYSTEM_ALERT_WINDOW"/>

现在对我有用了。甚至在关闭和打开应用程序后,给了我当时的错误。