tags:

views:

60

answers:

1

How to create a progress dialog without title and message? I used this code:

ProgressDialog.show(MyActivity.this, "", "", true);

But the progress spin was not centered well in the progress dialog view.

Thanks.

+1  A: 

ProgressDialog is an extension of AlertDialog, so make an AlertDialog and set it up manually, with your own graphic in the center to spin away while it's loading.

http://developer.android.com/reference/android/app/AlertDialog.html

fredley