Android 中的守护进程

发布于 2024-10-12 07:05:46 字数 96 浏览 4 评论 0原文

是否有通过 Google 或任何其他注册站点创建守护程序应用程序的注册过程?

我们正在制作一个在后台运行的警报应用程序。我们可以创建一个守护进程还是提供其他方法?

Is there any registration process for creating a daemon application with Google or any other registration site?

We are making an alert application that runs in the background. Can we create a daemon or is there some another method provided?

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

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

发布评论

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

评论(2

难理解 2024-10-19 07:05:46

它称为“服务”

应用程序组件,代表应用程序希望在不与用户交互的情况下执行长时间运行的操作,或者提供功能供其他应用程序使用。每个服务类必须有一个相应的 在其包的 AndroidManifest.xml 中声明。可以使用 Context 启动服务.startService()Context.bindService()

请注意,服务与其他应用程序对象一样,在其托管进程的主线程中运行。这意味着,如果您的服务要执行任何 CPU 密集型(例如 MP3 播放)或阻塞(例如网络)操作,它应该生成自己的线程来完成该工作...

It's called "Service":

an application component representing either an application's desire to perform a longer-running operation while not interacting with the user or to supply functionality for other applications to use. Each service class must have a corresponding <service> declaration in its package's AndroidManifest.xml. Services can be started with Context.startService() and Context.bindService().

Note that services, like other application objects, run in the main thread of their hosting process. This means that, if your service is going to do any CPU intensive (such as MP3 playback) or blocking (such as networking) operations, it should spawn its own thread in which to do that work...

听你说爱我 2024-10-19 07:05:46

不,你不能。即使您是注册的 Android 开发人员。

除了自己的员工之外,谷歌不希望任何人编写系统代码。这就是为什么在 Android 设备上获得 root 访问权限如此具有挑战性。是的,部分原因是它使 Android 非常安全……但这也意味着 Android 实际上成为一个只有 Google 员工才能访问的封闭系统。

对不起。

No, you can't. Even if you're a registered Android developer.

Google does not want anybody except their own employees writing system code. That's why gaining root access on android devices is so challenging. Yes, part of the reason is that it makes Android reeeaaall secure...but it also means that Android effectively becomes a closed system that only Google employees can access.

Sorry.

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