gpt4 book ai didi

安卓。无法清除或替换附加功能

转载 作者:行者123 更新时间:2023-11-30 03:12:11 25 4
gpt4 key购买 nike

我从通知中午餐 Activity 。

Intent notificationIntent = new Intent(context, MainActivity.class); 
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP );
notificationIntent.putExtra(GCM_EXTRA_ID, id);
PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND;
notificationManager.notify(0, notification);

如果activity被销毁,intent会创建新的activity并调用oncreate activity这段代码

Bundle extras = getIntent().getExtras();

if(extras != null){
if(extras.containsKey(GCMIntentService.GCM_EXTRA_ID))
{
int id = extras.getInt(GCMIntentService.GCM_EXTRA_ID);
Toast.makeText(this, "GCM_EXTRA_ID ACTIVITY ON CREATE:" + Integer.toString(id) , Toast.LENGTH_LONG).show();
dbClassItem = new DBClass(this);
db = dbClassItem.getWritableDatabase();
DBClass.setLocateValue(db, id);
db.close();
getIntent().putExtra(GCMIntentService.GCM_EXTRA_ID, 0);
}
}

如果我通过后退按钮关闭 Activity 并再次启动 Activity,应用程序仍然可以看到,该 Intent 具有额外的 key GCMIntentService.GCM_EXTRA_ID (这是一个公共(public)静态字符串)

如何清除或替换下一个应用程序启动时的额外内容。 getIntent().removeExtra()getIntent().getExtras().clear(),getIntent().putExtra(GCMIntentService.GCM_EXTRA_ID, 0) 不起作用。我能做些什么 ? Activity 有 android:launchMode ="singleTop" 键。

最佳答案

这个问题是通过在 Activity 中使用 onNewIntent 而不是使用 onCrete 解决的。

关于安卓。无法清除或替换附加功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20766249/

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