3

For iOS i use MBProgressHUD for show progress indicator and i love it.

For android i use standart progress dialog, but i want to create some beautiful progressbar with spinner like in ios.

I want loading image like this ios spinner

If you have any information about it, please answer.

Sorry for my english, is not my native language.

imike
  • 5,515
  • 2
  • 37
  • 44

1 Answers1

11

You can do it this way with a ProgressDialog:

dialog = ProgressDialog.show(MainSite.this, null, "Loading.... Please Wait...");

Declaration at android developer: http://developer.android.com/reference/android/app/ProgressDialog.html

And an example: http://thedevelopersinfo.wordpress.com/2009/10/16/showing-progressdialog-in-android-activity/

Marco Seiz
  • 944
  • 5
  • 19
  • 40
  • I founf this Thread. It should helps you! http://stackoverflow.com/questions/8295001/custom-progress-dialog-android – Marco Seiz Nov 14 '12 at 11:33