我目前正在蓝牙应用程序上编写,只允许用户在portait模式下使用它。但是,还有一些其他原因导致配置更改,迫使我向用户显示蓝牙连接已丢失。
连接到设备时,我会显示提示密码的对话框。如果在此对话可见时发生配置更改,我想解雇它。因此,我在onSaveInstanceState
,onDestroy
以及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)
{
}
}
但是,仍然会向用户显示对话框。我已经阅读了类似的问题,但无法找到解决这个问题的方法。
我感谢任何帮助。提前谢谢!
答案 0 :(得分:0)
您可以轻松dismiss()
方法
http://developer.android.com/reference/android/app/Dialog.html
答案 1 :(得分:0)
在显示对话框的活动中使用强引用,并在活动dismiss()
方法中调用onSaveInstanceState
方法为我解决了此问题。我知道,它不是最理想的解决方案,但它确实有效。
@Override
protected void onSaveInstanceState(Bundle persistantState)
{
if (this.connectionPasswordDialogue != null)
{
this.connectionPasswordDialogue.dismiss();
}
}
强引用是指活动内部使用的私有属性:
private DialogueUserModePassword connectionPasswordDialogue;