Android 8.1 关机

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lb5761311/article/details/83619566

之前发送Intent i = new Intent("android.intent.action.ACTION_REQUEST_SHUTDOWN");会报

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.ACTION_REQUEST_SHUTDOWN flg=0x10000000 (has extras) }

在8.1 用下面的代码 ,记得app system 权限

 private void shutDown(){
        Intent intent = new Intent(Intent.ACTION_REQUEST_SHUTDOWN);
        intent.putExtra(Intent.EXTRA_KEY_CONFIRM, false);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }

猜你喜欢

转载自blog.csdn.net/lb5761311/article/details/83619566
8.1