gpt4 book ai didi

android - 如何检查手机将要关机(关机)的android应用程序?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:06:52 29 4
gpt4 key购买 nike

是我可以调用的任何方法,它返回给我的信息是电话实际要关机(关机)。我知道这是 ACTION_SHUTDOWN 的 Intent ,但我必须从另一个来源获取有关关闭电话的信息。最好是直接形成系统。可能会检查/proc 或/sys fs 中的相同文件。

最佳答案

使用 BraodcastReceiver,扩展它并覆盖 onReceive

public class Receiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// Your code goes here
}
}

当你想使用它时:

activity.registerReceiver(receiver, shutDownIntent);

关于android - 如何检查手机将要关机(关机)的android应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12141046/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com