问题描述
dialog.setCancelable(false) 不生效,点击返回键,dialog仍然消失。
- TODO:除了换种方式实现 dialog 不能取消之外,还需要追溯问题。
- Dialog 类。
解决方案
使用按键监听OnKeyListener,实现点击返回键dialog不消失。
//使用lambda表达式替换 new DialogInterface.OnKeyListener() 覆写 onKey()方法
//public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event)
//按键功能机亦可生效
dialog.setOnKeyListener((dialog1, keyCode, event) -> {
if (keyCode == KeyEvent.KEYCODE_BACK) {
Log.i(TAG,"[onCreateDialog] consume KEYCODE_BACK when dialog = " + id);
return true;
}
return false;
});
案例
以 AOSP Settings 应用为例:
/packages/apps/Settings/src/com/android/settings/network/apn/ApnSettings.java
/packages/apps/Settings/src/com/android/settings/SettingsPreferenceFragment.java
场景描述
//【ApnSettings.java】重置apn时调用弹框提示重置中
private boolean restoreDefaultApn() {
showDialog(DIALOG_RESTORE_DEFAULTAPN);
//...omit inrelevant codes
}
//【SettingsPreferenceFragment.java】实际调用静态父类的方法,传入 dialogId 展示弹窗。
protected void showDialog(int dialogId) {
if (mDialogFragment != null) {
Log.e(TAG, "Old dialog fragment not null!");
}
mDialogFragment = SettingsDialogFragment.newInstance(this, dialogId);
mDialogFragment.show(getChildFragmentManager(), Integer.toString(dialogId));
}
Note:如果在父类showDialog中通过以下方法设置会报错(如下)。
mDialogFragment.getDialog().setCancelable(false);
02-14 23:57:13.575 3137 3137 E MessageQueue-JNI:
java.lang.NullPointerException: Attempt to invoke virtual method 'void
android.app.Dialog.setCancelable(boolean)' on a null object reference
原因:必须在onCreateDialog之后才能获取到dialog
dialog问题点
//【【ApnSettings.java】】覆写父类的方法
@Override
public Dialog onCreateDialog(int id) {
if (id == DIALOG_RESTORE_DEFAULTAPN) {
final ProgressDialog dialog = new ProgressDialog(getActivity()) {
public boolean onTouchEvent(MotionEvent event) {
return true;
}
};
//在此添加上述解决方案可以生效。
dialog.setMessage(getResources().getString(R.string.restore_default_apn));
dialog.setCancelable(false);//不生效
return dialog;
}
return null;
}