On Tue, Sep 14, 2010 at 4:19 PM, Bret Foreman <[email protected]> wrote: > The "call them in a separate thread" part below is clearly wrong: > > From (http://developer.android.com/guide/developing/tools/aidl.html) : > "By default, IPC calls are synchronous. If you know that an IPC > service takes more than a few milliseconds to complete, you should not > call it in the Activity/View thread, because it might hang the > application (Android might display an "Application is Not Responding" > dialog). Try to call them in a separate thread."
That is correct as written, AFAICT. Your problems in the other thread are from trying to apply AIDL to IntentService, AFAIK. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

