现在的位置: 首页 > 综合 > 正文

[小代码]简单的对话框设置标题、消息、图标和按钮

2013年12月14日 ⁄ 综合 ⁄ 共 429字 ⁄ 字号 评论关闭

别忘了 import android.app.AlertDialog; import android.content.DialogInterface;

AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Title");
alertDialog.setMessage("Message");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int which) {
      // TODO Add your code for the button here.
   }
});
// Set the Icon for the Dialog
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();

抱歉!评论已关闭.