Android中AlertDialog对话框禁止按[返回键]或[搜索键]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中AlertDialog对话框禁止按[返回键]或[搜索键]相关的知识,希望对你有一定的参考价值。
alertDialog.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode,KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_SEARCH) {
return true;
} else {
return false; // 默认返回 false
}
}
});
alertDialog.show();
以上是关于Android中AlertDialog对话框禁止按[返回键]或[搜索键]的主要内容,如果未能解决你的问题,请参考以下文章
Android4.0的Alertdialog对话框,设置点击其他位置不消失
024 Android 自定义样式对话框(AlertDialog)