Back to project page android-play-api-client.
The source code is released under:
Apache License
If you think the Android project android-play-api-client listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ar.com.gmvsoft.play.ui.dialog; // w w w . java 2 s. c o m import android.app.ProgressDialog; import android.content.Context; public class DialogHelper { public static ProgressDialog createProgressBar(Context context) { ProgressDialog progress = new ProgressDialog(context); progress.setTitle("Request Status"); progress.setTitle("Loading..."); progress.setCancelable(true); return progress; } }