在 Android 中执行操作而不打开应用程序
我在 Android 中有一个应用程序,它的 MAIN 活动中有一个执行操作的按钮。
有没有办法在不打开应用程序的情况下执行该操作?
我不知道是否可以说它就像一个小部件,因为它不等待更新。
用户应该能够只需单击应用程序的图标而无需打开即可执行该操作。 是否可以?
I have an application in Android that has a button in the MAIN activity that performs an action.
Is there a way to execute that action without opening the application?
I don't know if I can say it is like a widget, because it does not wait for updates.
The user should be able to execute that action just clicking on the icon of the application without opening.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是和不是。对于类似的问题,我必须做的是在我的主要活动中拥有透明的视图,然后自行终止:
在您的活动中...
以及 AndroidManifest.xml 中:
希望这会有所帮助,
Phil Lello
Yes and no. What I had to do for a similar problem was have a transparent view in my main activity, and then self-terminate:
In your activity...
And in AndroidManifest.xml:
Hope this helps,
Phil Lello
试试这个问题 Android - 如何仅通过单击应用程序图标来执行项目的主要功能?
Try this question Android - How to execute main functionality of project only by clicking on the icon of application?