android中弹出对话框退出程序

来源:赵克立博客 分类: Android 标签:Android发布时间:2015-04-10 00:04:05最后更新:2015-04-10 00:39:17浏览:2312
版权声明:
本文为博主原创文章,转载请声明原文链接...谢谢。o_0。
更新时间:
2015-04-10 00:39:17
温馨提示:
学无止境,技术类文章有它的时效性,请留意文章更新时间,如发现内容有误请留言指出,防止别人"踩坑",我会及时更新文章

捕获按键信息后调用下面函数可以生成一个对话框

	 public void exit() {
	        new AlertDialog.Builder(this)
	            .setTitle("退出")
	            .setMessage("确定退出吗?")
	            .setPositiveButton("确定", new DialogInterface.OnClickListener() {

	            @Override
	            public void onClick(DialogInterface dialog, int which) {
	                Intent startMain = new Intent(Intent.ACTION_MAIN);
	                startMain.addCategory(Intent.CATEGORY_HOME);
	                startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
	                startActivity(startMain); 
	                System.exit(0); 
	            }
	            
	            })
	            .setNegativeButton("取消", new DialogInterface.OnClickListener() {

	            @Override
	            public void onClick(DialogInterface dialog, int which) {
	                // TODO Auto-generated method stub
	                 dialog.cancel();
	            }
	            
	            }).show();
	    }


微信号:kelicom QQ群:215861553 紧急求助须知
Win32/PHP/JS/Android/Python