Is using Parcelable the right way to send data between applications?

前端 未结 3 849
野趣味
野趣味 2021-02-09 10:30

I am trying to understand how to communicate between applications in Android - not just between Activity instances.

I set up a \'client\' that sends a Messe

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-09 11:11

    If you dont want to use a persistence layer somewhere ( i use cloud apis ) you could run a service in a separate process and bind to the service the respective apps that need the shared value-holder type object data. the service would be where you construct and get the obj values on behalf of connecting ( binding ) apps.

提交回复
热议问题