English 中文(简体)
如何在申请和申请之间沟通
原标题:How to communicate between applications on android

我正试图提出一种申请,作为甲状腺服务,将分发其他需要与之沟通的仪器。

它是作为服务机构实施的,当客户在同一处包装时,他们就会被罚款。

However following http://developer.android.com/guide/developing/tools/aidl.html I am having problems making this work for client applications, in particular the line

“在你执行“服务”时,你将接受一次模拟(所谓的服务)。 要求您的InterfaceName.Stub.as Interface(IBinder)服务,将返回的参数投到您的Interface 。

由于申请分别分发,I dont可与您的InterfaceName联系,并抄送给客户,这无疑是“错误方式”的。

如果任何人都能够提供文件/书/书源代码的贴切点,将会非常有益,

(and forgive the irony in my name, was a bit of an in joke)

最佳回答

书籍“Pro Anders 2”在《国际仲裁裁决汇编》中树立了良好榜样。

问题回答

你们必须复制(或以其他方式包括或改写具有可比功能的规范)该法典中客户终端的客户部分。

What exactly do the applications need to communicate to each other?

如果是数据,则请查询ContentProvider

也可通过<代码>Intent.putExtra分享信息。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签