如何禁用home键
我想锁定屏幕。我想禁用主页键并仅使用返回键。我该如何实现这个目标?
I'd like to lock the screen. I want to disable the home key and only use the back key. How do I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用此方法禁用android中的Home键
Use this method to disable the Home key in android
我找到了解决 HOME 键问题的方法。
对于您的应用程序,将清单设置为
现在您的应用程序是备用启动器应用程序。
使用 adb,并使用包管理器禁用启动器应用程序
现在按 Home 键将始终保留在同一屏幕中。
I found a way to tackle the HOME key.
For your application set the manifest as
Now your application is an alternate Launcher application.
Use the adb, and disable the launcher application using package manager
Now the Home key press will always stay in the same screen.
此解决方案仅适用于 3.x。
好吧,这本来应该是一个很难回答的问题。但这里有一个方法可以破解它。
在您的活动中覆盖以下方法,
现在像这样处理关键事件,
This solution works up to 3.x only.
Okay, this was supposed to be a hard question. But here is a way to crack it.
Override the below method in your Activity,
And now handle the key event like this,
将此代码添加到您的
MainActivity
类中:这不是锁定“home”按钮,而是用户无法长时间切换到另一个应用程序(超过 100 毫秒),也许这就是您的情况想。
Add this code to your
MainActivity
class:It's not a locking for 'home' button, but user can't switch to another app for a long time (more than 100 milliseconds), maybe this is what you want.
要禁用主页按钮,请尝试以下操作:
通知栏下拉的问题可以通过隐藏通知栏来解决,如下所示:
或在清单中为您的活动或应用程序设置全屏主题:
To disable home button, try this:
Problem with notification bar pulled down can be solved by hiding notification bar like here:
or set fullscreen theme for your Activity or Application in manifest: