Here you can find the source of showProgressDialog(Context c, String title, String msg)
public static ProgressDialog showProgressDialog(Context c, String title, String msg)
//package com.java2s; import android.app.ProgressDialog; import android.content.Context; public class Main { public static ProgressDialog showProgressDialog(Context c, String title, String msg) { return ProgressDialog.show(c, title, msg, true); }/*from w w w.ja v a2s. c o m*/ }