[android-beginners] Re: Relationship between bindService and onServiceConnected

2010-07-07 Thread Bret Foreman
I don't see anything unusual in the log. I've got a few debug messages
and they are printing out fine. I've got a debug message in
onServiceConnected that is not printing. There are no error messages
to be seen. The really odd thing is that bindService is returning true
and not throwing any exceptions.

Any other ideas?

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Relationship between bindService and onServiceConnected

2010-07-07 Thread Kostya Vasilyev

Bret,

Set a breakpoint in the service's onBind method, run the code, see what 
happens.


-- Kostya

07.07.2010 19:21, Bret Foreman пишет:

I don't see anything unusual in the log. I've got a few debug messages
and they are printing out fine. I've got a debug message in
onServiceConnected that is not printing. There are no error messages
to be seen. The really odd thing is that bindService is returning true
and not throwing any exceptions.

Any other ideas?

   



--
Kostya Vasilev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com

--
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Relationship between bindService and onServiceConnected

2010-07-07 Thread Bret Foreman
That was it! The original onBind stub had a return null at the end
which I had forgotten to remove. Thanks.

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en