Thursday 3 May 2012

Alert Message Box in Android


ALERTDIALOG.BUILDER ADB=NEW ALERTDIALOG.BUILDER(ACTIVITY);

    adb.setTitle("Alert?");
    adb.setMessage("Do you want to delete Note.");
    adb.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
                
            System.out.println("zdfsdfksjDfjkds:hi me hi me  "+holder.id.getText());
          }
    }
      );
    adb.setNegativeButton("No", null);
    adb.show();

No comments:

Post a Comment