Whenever you're analyzing timing issues, debugging often does not help, as freezing the app at a breakpoint will make the problem go away.
Your best bet is to insert lots of logging calls (Log.XXX()) into the app's different threads and callbacks and see where the delay is at. If you need a stacktrace, create a new Exception (just instantiate one) and log it.