Skip to content Skip to sidebar Skip to footer

Android Service Not Receiving Message From Activity

I have created both a Service and an Activity that need to be able to communicate with each other. The Activity should send a Message to the Service, and the Service should reply w

Solution 1:

In your onBind method, can you try returning the messenger.getBinder() instead of the binder?


Post a Comment for "Android Service Not Receiving Message From Activity"