Tuesday, August 4, 2015

Android - Simple Dialog

Simple alert box with just OK button.


new AlertDialog.Builder(ctx)
        .setTitle("Info")
        .setMessage("Add text here")
        .setPositiveButton("OK", new DialogInterface.OnClickListener() {
            @Override            
            public void onClick(DialogInterface dialog, int which) {
            }
}).show();

No comments:

Post a Comment