khirulnizam

AlertDialog android

Apr 11th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. AlertDialog.Builder alrt  = new AlertDialog.Builder(getApplicationContext());
  2.  
  3.                     alrt.setMessage("Sila masukkan semua data lokasi");
  4.                     alrt.setTitle("POI KVDSAZI");
  5.                     alrt.setPositiveButton("Ok",
  6.                             new DialogInterface.OnClickListener() {
  7.                                 public void onClick(DialogInterface dialog,
  8.                                                     int which) {
  9.                                     //dismiss the dialog
  10.                                 }
  11.                             });
  12.                     alrt.setCancelable(true);
  13.                     alrt.create().show();
Advertisement
Add Comment
Please, Sign In to add comment