安卓中的服务
有人可以举例说明android中的服务吗?
谢谢
can anybody give example with service in android?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人可以举例说明android中的服务吗?
谢谢
can anybody give example with service in android?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在 Android 中,基本上有两种服务。
如果您运行本地服务,那么您的应用程序以及您的服务将在同一个 ProcessID 上运行
使用 Android 接口定义语言 (AIDL) 与您的服务进行通信
如果您运行远程服务,它作为不同的进程运行,您可以 可以在 Android SDK 附带的 API 演示中找到示例代码,也可以在此处
http:// marakana.com/forums/android/examples/60.html
http://developer.android.com/intl/de/guide/developing/tools/aidl.html#implementing
In Android you basically have 2 kinds of services.
If you run local service then your application as well as your service will run on same ProcessID
If you run a remote service it runs as a different process you can communicate with your service using Android Interface Definition Language(AIDL)
You can find sample codes in API Demo which comes along with Android SDK as well as here
http://marakana.com/forums/android/examples/60.html
http://developer.android.com/intl/de/guide/developing/tools/aidl.html#implementing