使用警报框禁用后退按钮?
我有一个用于登录的警报框,当按下后退按钮时,警报框就会消失。我尝试过@Override 公共无效onBackPressed(){ // 什么都不做。 但它仍然只是停止活动而不是警报框。我需要做一些特殊的事情来禁用警报框上的后退按钮吗?
I have an alert box for a log in and when ever the back button is pressed the alert box disappears. I've tried @Override
but it still just stops the back on the activity not the alertbox. Is there something special i have to do to disable the back button on the alertbox?
public void onBackPressed() {
// do nothing.
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信
setCancelable()
是为此目的...http://developer.android.com/reference/android/app/AlertDialog.Builder.html#setCancelable(boolean)
I believe
setCancelable()
is intended for this...http://developer.android.com/reference/android/app/AlertDialog.Builder.html#setCancelable(boolean)