0

My problem is that when I call first webservice I am showing ProgressDialog with please wait... message. In this case I cant do other event like click or other. I have to wait until all webservices completed.

I want to call multiple web services in single activity. But I want to show progress bar in top right corner like android g+ app and many other apps. In this manner I cant interect with app.

Please could you provide me a perfect solution?

Evos
  • 3,915
  • 2
  • 18
  • 21
hharry
  • 422
  • 1
  • 9
  • 21

1 Answers1

1

Your single question have multiple answer.

I want to show progress bar in top right corner like android g+ app and many other apps

For above your query you have to use custom progress dialog.There are many resource available on web to make custom Dialog.

See Example & Reference

Next, I call first webservice I am showing ProgressDialog with please wait... message. In this case I cant do other event like click or other.I have to wait until all webservices completed.I want to call multiple web services in single activity. 

For this query you have to manage Thread or asynctask task so you will manage your web service.

See Example & Reference

Community
  • 1
  • 1
Chintan Khetiya
  • 15,962
  • 9
  • 47
  • 85