You can do the following:
Within the remote call method, you can add the following as the first
line :
CursorManager.setBusyCursor();
Next, within the method's result handler, add the following line once you
get resultstatus as true (I mean once data retreival is successful):
CursorManager.removeAllCursors();You'll have to include the CursorManager class for the above. All the best, Robi.

