它会是什么? (它上面也会有一个“[OK]”按钮。)
感谢您的帮助。
答案 0 :(得分:4)
它的子类可能更适合您。具体看看AlertDialog
课程。还有一个AlertDialog.Builder
子类有助于创建AlertDialog
。
答案 1 :(得分:2)
你使用Toast类。
答案 2 :(得分:1)
以下是AlertDialog的简单使用:
AlertDialog alertDialog = new AlertDialog.Builder(theContext).create();
alertDialog.setTitle("End Game?");
alertDialog.setMessage("Are you sure you wish to end the game?");
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Yes", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface arg0, int arg1)
{
finish();
}
});
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "No", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface arg0, int arg1)
{
}
});
alertDialog.show();
以为我会在浏览此页面后添加我所做的内容,因为这对我来说很有用!! - 希望这有助于下一个人或gal: - )