|

10-29-2009, 08:50 AM
Not much here to go on, but my guess is that you are performing this synchronization work in the UI event thread, which will hang the UI for the entire device until it is finished.
This type of work should be done in a worker thread, which runs in the background.
|