接收方需要时间才能被呼叫

时间:2019-05-14 07:29:02

标签: android receiver

我有进入锁定任务模式后被调用的接收器:

public class DeviceOwnerReceiver extends DeviceAdminReceiver {

    @Override
    public void onLockTaskModeEntering (Context context, Intent intent, String pkg){
        Log.i(TAG,"I am in the method onLockTaskModeENtering");
    }
}

在重新启动时,如果我进入锁定任务模式,则需要40秒才能进入此回调方法,而在不重新启动时,它将立即进入锁定任务模式。您知道为什么以及如何解决它吗?

0 个答案:

没有答案