模拟长按主页按钮
如果我想模拟按下主页按钮,我会这样做
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
但是如何模拟长按?
If I want to simulate press on home button I do this
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
But how can I simulate long press?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法覆盖主页按钮。出于安全原因,Android 不允许这样做。但是要处理按钮的长按,您可以使用
onKeyLongPress
You can't override the home button. Android doesn't allow it because of security reasons. But to handle de long press on a button, you can use
onKeyLongPress