tags:

views:

36

answers:

1

Hi folks

i developed application with map service and webservices when i run application its became very slow and continuosly it is showing activity not responding force close or wait

how to resolve this issue

Thanks in advance

Aswan

+1  A: 

Consider use the AsyncTask to run web service in the background. Feedback to UI when data fetched completely.

http://developer.android.com/reference/android/os/AsyncTask.html

qrtt1