user256239
user256239

Reputation: 18027

How to create a progress dialog without title and message?

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.

Upvotes: 0

Views: 5235

Answers (1)

fredley
fredley

Reputation: 33901

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

Upvotes: 3

Related Questions