Here you can find the source of showAlertDialog(Activity ctx, String title, String text)
public static final void showAlertDialog(Activity ctx, String title, String text)
//package com.java2s; import android.app.Activity; import android.app.AlertDialog; public class Main { public static final void showAlertDialog(Activity ctx, String title, String text) {//from w w w. j a v a 2 s . c om AlertDialog.Builder alertBuilder = new AlertDialog.Builder(ctx); alertBuilder.setTitle(title); alertBuilder.setMessage(text); AlertDialog alert = alertBuilder.create(); alert.show(); } }