Android AlertDialog Example

Hi guys! Today we're going to do an Android AlertDialog script. AlertDialog is a small window that appears or pop up in front of your application. It gets the screen focus and able to accept user interaction. Dialogs are normally used for notifications that should interrupt the user and to perform short tasks.
    Android AlertDialog Example
    Android is asking you something. :))

    This is how I used it. Today's code will simply:
    • Display an AlertDialog which asks the user if he want to exit the application. 
    • If the user touched "YES", the program will end. 
    • If the user touched "NO", the AlertDialog will gone and a toast message will appearsaying "You touched CANCEL". 
    package com.example.AndroidAlertTutorial;

    import android.app.Activity;
    import android.app.AlertDialog;
    import android.content.DialogInterface;
    import android.content.DialogInterface.OnClickListener;
    import android.os.Bundle;
    import android.widget.Toast;

    public class AndroidAlertTutorial extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    PopIt("Exit Application", "Are you sure you want to exit?");

    }

    public void PopIt( String title, String message ){
    new AlertDialog.Builder(this)
    .setTitle( title )
    .setMessage( message )
    .setPositiveButton("YES", new OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) {
    //do stuff onclick of YES
    finish();
    }
    })
    .setNegativeButton("NO", new OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) {
    //do stuff onclick of CANCEL
    Toast.makeText(getBaseContext(), "You touched CANCEL", Toast.LENGTH_SHORT).show();
    }
    }).show();
    }
    }

    The preview of this code is this:

    Click to enlarge.
    References:
    http://developer.android.com/reference/android/app/AlertDialog.html
    http://developer.android.com/guide/topics/ui/dialogs.html

    Penulis : Unknown ~ Sebuah blog yang menyediakan berbagai macam informasi

    Artikel Android AlertDialog Example ini dipublish oleh Unknown pada hari . Semoga artikel ini dapat bermanfaat.Terimakasih atas kunjungan Anda silahkan tinggalkan komentar.sudah ada 0 komentar: di postingan Android AlertDialog Example
     

    0 comments:

    Post a Comment

    Leave Me a Comment Below. Thanks :)