Re: [android-developers] Re: Exposing data to third-party apps in a synchronous call?

2010-09-17 Thread Kostya Vasilyev
I see the path you're going... You might also check out this class that does more or less same thing: http://developer.android.com/reference/android/os/ResultReceiver.html And then there is PendingIntent - used quite a bit in Android itself, and whose purpose is to provide an action that can

[android-developers] Re: Exposing data to third-party apps in a synchronous call?

2010-09-17 Thread Mark Wyszomierski
Yeah exactly, I was wondering if I was missing a way to pass data synchronously using intents, similar in a sense to the way activities can do it with startActivityForResult(). I haven't looked at the aidl remote service stuff in about a year, and forgot whether that lets the processes communicate