gpt4 book ai didi

Android - BroadcastReceiver 的 onReceive 从 Intent 崩溃?

转载 作者:行者123 更新时间:2023-11-29 22:24:10 25 4
gpt4 key购买 nike

因此,我正尝试从 `BroadcastReceiver 中的 onReceive 函数开始一项新 Activity ,但我似乎崩溃了。没有进一步的告别,这里是代码:

public void onReceive(Context context, Intent intent) {     

//... other stuff that's not relevant

Intent j = new Intent(context, myClass.class);
context.startActivity(j);
//If I comment the above two lines out and replace with a Toast, the toast shows up
}

想法?

编辑 - 进行了更多测试,我可以使用相同类型的 Intent 从其他地方开始这项 Activity 。我无法通过 BroadcastReceiver...

谢谢。

最佳答案

试试这个:

Intent j = new Intent(context, myClass.class);
j.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(j);

关于Android - BroadcastReceiver 的 onReceive 从 Intent 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6404397/

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