应用程序始终在前台或聚焦或在顶部
我正在尝试创建一个简单的android应用程序,它应该始终在前台运行......如果启动一次,没有人可以杀死这个应用程序。 或者只有当设备重新启动时才能关闭。
我正在使用 eclipse 和 android 2.3 api 9.
I'm trying to create a simple android application which should always be in foreground running... no one can kill this application if started once.
or it can be closed only when device get restarted.
I'm working with eclipse and android 2.3 api 9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 系统实际上不允许应用程序出现这种行为。主页按钮始终会将您的应用程序从前台删除并将用户带到主屏幕。如果您想开发这样的应用程序,您可能必须在操作系统的修改版本下进行才能允许此类操作。
The Android system does not really allow this sort of behavior for an application. The home button is always going to remove your app from the foreground and take the user to the home screen. If you want to develop an app like this you're probably going to have to do it under a modified version of the OS to allow such things.