如何关闭Android中Alert Box中按钮的应用程序?

时间:2011-08-31 07:21:02

标签: android onclick

如何在onClick()内的Android中关闭应用程序?

我的代码遵循以下内容:

alertbox.setNegativeButton("No", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) {
        System.out.println("cancel clicked");  
    }
});   
alertbox.show();   

如果我在finish()内写onClick,它就无济于事。

2 个答案:

答案 0 :(得分:3)

试试这种方式

alertbox.setNegativeButton("No", new DialogInterface.OnClickListener() {               
        public void onClick(DialogInterface arg0, int arg1) {        
            ActivityName.this.finish();
        }              
    });   
    alertbox.show();   
}

答案 1 :(得分:0)

尝试直接调用主要活动的结束。 MainActivityName.this.finish();