Java tutorial
//package com.java2s; //License from project: Apache License import android.app.ProgressDialog; import android.content.Context; public class Main { /** * Show progress dialog * * @param context * @param title * @param msg * @return */ public static ProgressDialog showProgress(Context context, String title, String msg) { return ProgressDialog.show(context, null, msg); } }