Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个屏幕锁定应用程序。但是,我在系统中遇到了一个巨大的漏洞。用户点击/触摸/按下主页按钮的那一刻,活动进入后台。我该如何防止呢?那可能吗?
我想详细解释如何做到这一点。
不,不可能阻止活动进入后台,但您可以在按下主页按钮时捕获事件,以便在活动进入后台时释放资源或执行任何其他操作。
你可以覆盖 onStop 方法
@Override protected void onStop() { super.onStop(); }