Android关闭应用程序支持

时间:2016-07-25 12:53:23

标签: android

当用户按下按钮或屏幕超时时,Android如何关闭我的应用程序? 我已经尝试过onResume(),onPause和onRestart()方法,但我已经在另一个上下文中使用了它。

此致

1 个答案:

答案 0 :(得分:1)

在你的应用程序类onCreate()方法中,为Screen Off Event注册接收器

IntentFilter intentFilter = new IntentFilter(Intent.ACTION_SCREEN_ON);
intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
registerReceiver(new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
            Log.d(TAG, Intent.ACTION_SCREEN_OFF);
        } else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
            Log.d(TAG, Intent.ACTION_SCREEN_ON);
        }
    }
}, intentFilter);
像这样。