• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. N

    Apps Exchanging Messages containing Bundles with self-developed Parcelables

    Hello, I try to exchange objects of type android.os.Message between services in different processes. I add a bundle to each message. This bundle contains MyMessage object, which implements the Parcelable interface. I do it like this: Message message = new Message(); Bundle bundle = new...