安卓中的服务

发布于 2024-09-15 02:12:17 字数 39 浏览 2 评论 0原文

有人可以举例说明android中的服务吗?

谢谢

can anybody give example with service in android?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦晓ヶ微光ヅ倾城 2024-09-22 02:12:17

在 Android 中,基本上有两种服务。

  1. 本地服务
  2. 远程服务

如果您运行本地服务,那么您的应用程序以及您的服务将在同一个 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.

  1. Local Service
  2. Remote Service

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文