如何在Android应用程序中检查手机是否将关闭(关闭电源)?

时间:2012-08-27 11:25:03

标签: android linux eclipse reboot power-off

我可以打电话的任何方法,它返回给我的电话实际关机(关机)的信息。 我知道这是ACTION_SHUTDOWN的意图,但我必须获得关于关闭手机源代码的信息。最好的是直接形成系统。也许在/ proc或/ sys fs中检查相同的文件。

1 个答案:

答案 0 :(得分:1)

使用BraodcastReceiver,对其进行扩展并覆盖onReceive

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

当您想要使用它时:

activity.registerReceiver(receiver, shutDownIntent);