Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
    }
}