Here you can find the source of showDialog(Context context, String title, String message)
static public void showDialog(Context context, String title, String message)
//package com.java2s; //License from project: Apache License import android.app.AlertDialog; import android.content.Context; public class Main { static public void showDialog(Context context, String title, String message) {/*w w w. jav a 2 s.c o m*/ new AlertDialog.Builder(context).setTitle(title) .setMessage(message) .setPositiveButton(android.R.string.ok, null) .setIcon(android.R.drawable.ic_dialog_alert).show(); } }