在我的AlertDialog中,我只添加了一个按钮。当我点击这个按钮时,我希望我回到家里。
这是代码:
AlertDialog alertDialog = new AlertDialog.Builder(Main.this).create();
alertDialog.setTitle("Débit !!");
alertDialog.setMessage("Votre débit de téléchargement est "+deb);
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();
我知道我需要在public void onClick(DialogInterface dialog, int which)
中添加一些行。但是,我不知道我会把它放进去。
拜托,我需要你的建议。
答案 0 :(得分:1)
如果您尝试在应用程序中进行某项活动,则应该这样做。
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent i = new Intent(Your_class.this, YOur_class_you_want_to_start.class);
startActivity(i);
}
});