views:

1168

answers:

3

Doesn't seem to be covered in the books Ive looked at.

+1  A: 

Try to use a progress dialog: http://developer.android.com/reference/android/app/ProgressDialog.html

Soulreaper
+3  A: 

In addition to the progress dialogs described in the other answers, you can:

  • Add a ProgressBar to your activity, as shown here
  • Use the progress indicator in the title bar of your activity, as shown here
  • Use a RotateAnimation and your own custom image
CommonsWare
I see setProgressBarVisibility() in one of your examples - how do you define the style of the progress bar? I wanted to use the spinning circular graphic but Im not sure how to set that?
Eno
I haven't used it. But, try this: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ProgressBar2.html
CommonsWare
Perfect,thanks.
Eno