从广播接收器启动活动时选项卡消失
我的应用程序中有 2 个选项卡。 在 BroadcastReceiver 的 onReceive 函数中,我使用标志“Intent.FLAG_ACTIVITY_NEW_TASK)”启动一个新活动(通常位于选项卡 1 中)。
Intent i=new Intent();
i.setClass(context, SomeActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
它开始正常,但选项卡消失了。
这里应该做什么(可能还有其他标志)?
I have to 2 tabs in my app.
In my onReceive function of BroadcastReceiver, i start a new activity (that is in tab 1 normally) with flag "Intent.FLAG_ACTIVITY_NEW_TASK)".
Intent i=new Intent();
i.setClass(context, SomeActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
It starts ok but tabs are gone.
What should be done here (any other flags maybe) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论