gpt4 book ai didi

来自服务 Intent 的android startActivity

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:57:02 26 4
gpt4 key购买 nike

<分区>

我尝试在服务中使用 Intent ,但是当我尝试这个时:

Intent intent_facebook = new Intent (this,MainUploadToYoutube.class);
intent_facebook.putExtra("vid", vid);
startActivity(intent_facebook);

在 logcat 上出现此错误:

Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

所以我从这里开始尝试:

android start activity from service

Intent  intent_facebook = new Intent(getBaseContext(), MainUploadToYoutube.class);
intent_facebook.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplication().startActivity( intent_facebook);

但这什么都不做,我在 logcat 中没有收到错误

怎么了?

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