如何从“运行服务”中的正在运行的服务(如输入法)启动一个 Activity页
您可以在“运行服务”页面中找到, 和软键盘一样,“输入法:触摸管理”,可以启动自定义的Activity。 我的服务没有输入法或者壁纸之类的,怎么办?
as you can find in the "Running services" page,
like the softkeyboard, "input method: touch to manage", can start a custom Activity。
my service is not a input method or wallpaper or so, how to do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法从“正在运行的服务”页面执行此操作。
启动服务的唯一方法是通过意图,您的服务必须监听该意图,如清单中声明的那样。请查阅文档。
you cannot do it from the Running Services page.
The only way to start a service is through an intent, which your Service must be listening to, as declared in your manifest. Please consult the documentation.