aidl
Complex types from a remote service to an application through AIDL
Ideally I would like to send an object of type ArrayList<ArrayList<ASimpleClass>> from a remote service in one APK to an application in another. I\'m not sure if this is even possibl[详细]
2023-01-21 13:31 分类:问答How to implement callbacks using IntentService on Android?
If it must implement with AIDL? And please kindly provide an example, thanks. EDIT: There are several solutions, Does anyone k开发者_开发知识库now which is better?You might be looking for the ResultR[详细]
2023-01-19 23:21 分类:问答Implement signature-level security on Android services with more than one allowed signature
I\'m developing on an application at the moment which contains quite a lot of personal user information - things like Facebook contacts, etc ... Now, one of the things I want to be able to do (and hav[详细]
2023-01-17 12:20 分类:问答What is the preferred way to communicate between applications on Android (service vs. intents)
What is the difference between these two ways of interaction between applications on Android: Implementing service in app #1 and using it in app #2[详细]
2023-01-15 17:26 分类:问答Android - Updating TextView String through AIDL Service
I have an app that uses a TabHost. Several of the Tabs share a common HUD. I am using a service to periodically update those values by calling an AIDL function when ready.[详细]
2023-01-11 02:57 分类:问答When to use an aidl based service?
Under what circumstances would using AIDL to define a service interface be the correct decision (rather than just creating an extension to the ser开发者_如何学Cvice class)?You need to use AIDL if you[详细]
2023-01-09 09:27 分类:问答Is it possible to remotely call methods on another computer through AIDL (Android Interface Definition Language)?
I am curious whether the AIDL only serves for inter-process communication between several Android apps on the same device, or AIDL provides much wider functi开发者_运维技巧onality. Let\'s say I have a[详细]
2023-01-08 01:08 分类:问答Android - Service with Application lifecycle
I am trying to create a Servicefor my application which will negotiate Bluetooth connections and data. I want this service\'s lifecycle to start and end with the Application, but still be able to have[详细]
2023-01-06 20:34 分类:问答Does oneway declaration in Android .aidl guarantee that method will be called in a separate thread?
I am designing a framework for a client/server application for Android phones. I am fairly new to both Java and Android (but not new to programming in gener开发者_运维知识库al, or threaded programming[详细]
2023-01-03 16:30 分类:问答Android remote service doesn't call service methods
I\'m developing a GPS tracking software on android. I need IPC to control the service from different activities. So开发者_如何学运维 I decide to develop a remote service with AIDL. This wasn\'t a big[详细]
2023-01-01 04:58 分类:问答