配置更改后关闭对话框

时间:2015-07-10 12:49:47

标签: java android android-fragments android-dialogfragment android-configchanges

我目前正在蓝牙应用程序上编写,只允许用户在portait模式下使用它。但是,还有一些其他原因导致配置更改,迫使我向用户显示蓝牙连接已丢失。

连接到设备时,我会显示提示密码的对话框。如果在此对话可见时发生配置更改,我想解雇它。因此,我在onSaveInstanceStateonDestroy以及onCreate中调用辅助方法(如果保存的实例状态不为空)。

@Override
public void onCreate(Bundle savedInstanceState)
{
    if (savedInstanceState != null)
    {
        this.tryDismiss();
    }
    super.onCreate(savedInstanceState);
}

@Override
public void onSaveInstanceState(Bundle outState)
{
    System.out.println("Saving instance state!");
    this.tryDismiss();

    super.onSaveInstanceState(outState);
}

@Override
public void onDestroy()
{
    System.out.println("Destroying dialogue!");
    this.tryDismiss();

    super.onDestroy();
}

public void tryDismiss()
{
    try
    {
        System.out.println("DIE BART, DIE!");
        this.dismissAllowingStateLoss();
    }
    catch (Exception closingException)
    {
    }
}

但是,仍然会向用户显示对话框。我已经阅读了类似的问题,但无法找到解决这个问题的方法。

我感谢任何帮助。提前谢谢!

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

在显示对话框的活动中使用强引用,并在活动dismiss()方法中调用onSaveInstanceState方法为我解决了此问题。我知道,它不是最理想的解决方案,但它确实有效。

@Override
protected void onSaveInstanceState(Bundle persistantState)
{
    if (this.connectionPasswordDialogue != null)
    {
        this.connectionPasswordDialogue.dismiss();
    }
}

强引用是指活动内部使用的私有属性:

private DialogueUserModePassword connectionPasswordDialogue;