Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-android 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 com.kahkong.wikicontacts.subcontroller; /*from ww w .j av a 2 s . c o m*/ import android.app.ProgressDialog; import android.content.Context; /** * * @author Poh Kah Kong * */ public class LoadingDialog extends ProgressDialog { public LoadingDialog(Context context) { super(context); setInverseBackgroundForced(true); setMessage("Please wait.."); } }