Android AlertDialog JAVA

AlertDialog, Toast mesajdan farkı kulanıcıya soru sormak veya uyarmak ve etkileşim kurması için kulanabiliriz.





//AlertDialog
AlertDialog alertDialog = new AlertDialog.Builder(
                        SimpleScannerActivity.this).create();

                // Setting Dialog Title
                alertDialog.setTitle("Hata");

                // Setting Dialog Message
                alertDialog.setMessage("Yanlış girdiniz");

                // Setting Icon to Dialog
                alertDialog.setIcon(R.drawable.ic_launcher);

                // Setting OK Button
                alertDialog.setButton("Tamam", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        // Write your code here to execute after dialog closed

                    }
                });

                // Showing Alert Message
                alertDialog.show();

Related Posts

Android AlertDialog JAVA
4/ 5
Oleh