views:

143

answers:

1

I'm using Eclipse and have an emulator running Android 2.1 and my IntentService. I'd like to step through my onHandleIntent() overridden function. I've put in a breakpoint on the first statement of the function, which is Context context = getBaseContext();. When the intent is called the program just fails and does not go to debug view in Eclipse.

A: 

debugging multi-thread app is hard as there is no order in which things are executed, each thread will do its tasks as quickly as possible.

try trace messages to debug your code. anyway you should be able to debug your code.

kamiseq