我是新的Android应用程序,我想在我的Android应用程序中显示确认MessageBox,并希望获得结果(点击哪个按钮,如.Net Windows应用程序)。
2vuwiymt1#
要获取AlertDialog的结果,请尝试以下操作,
String Result=""; public void Alert(String text, String title) { AlertDialog dialog=new AlertDialog.Builder(context).create(); dialog.setTitle(title); dialog.setMessage(text); if(!title.equals("") && !text.equals("")) { dialog.setButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { Result="OK"; } }); dialog.setButton2("Cancel", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { Result="Cancel"; } }); } dialog.show(); }
谢谢你。
1条答案
按热度按时间2vuwiymt1#
要获取AlertDialog的结果,请尝试以下操作,
谢谢你。