首页 > 移动平台 > 详细

Android点击返回键back时弹出对话框Dialog

时间:2014-06-24 18:01:31      阅读:405      评论:0      收藏:0      [点我收藏+]
public boolean onKeyDown(int keyCode, KeyEvent event) {  
    if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {  
        ExitDialog(MainActivity.this).show();  
        return true;  
    }  
      
    return super.onKeyDown(keyCode, event);  
}  
private Dialog ExitDialog(Context context) {  
    AlertDialog.Builder builder = new AlertDialog.Builder(context);  
    builder.setIcon(R.drawable.icon);  
    builder.setTitle("弹出对话框");  
    builder.setMessage("确定要××××吗,O(∩_∩)O哈哈~");  
    builder.setPositiveButton("确定",  
            new DialogInterface.OnClickListener() {  
                public void onClick(DialogInterface dialog, int whichButton) {           
                   //××××操作代码
                }  
            });  
    builder.setNegativeButton("取消",  
            new DialogInterface.OnClickListener() {  
                public void onClick(DialogInterface dialog, int whichButton) {  
                }  
            });  
    return builder.create();  
} 

Android点击返回键back时弹出对话框Dialog,布布扣,bubuko.com

Android点击返回键back时弹出对话框Dialog

原文:http://blog.csdn.net/wonfly2011/article/details/33330109

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!