How to pass data both ways between different android applications?

后端 未结 6 1119
甜味超标
甜味超标 2021-02-15 10:38

What\'s the easiest way to pass string variables from one application to another and also return values back? I have access to the source code of both apps, but

6条回答
  •  醉酒成梦
    2021-02-15 11:27

    AIDL is one means of communication between two different applications using Interfaces

    http://developer.android.com/guide/components/aidl.html

    You can find a working sample in the below tutorial http://manishkpr.webheavens.com/android-aidl-example/

提交回复
热议问题