Skip to content

Instantly share code, notes, and snippets.

@mbeaty
mbeaty / gist:1096789
Created July 21, 2011 08:29
Simple Android Alert Dialog
public void showMessageDialog(String str) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(str);
builder.setCancelable(false);
builder.setNeutralButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});