我理解粘性意图的实现,但如果我最初有这种形式的粘性意图:
Intent intent = new Intent("some.custom.action");
intent.putExtra("A", true);
intent.putExtra("B", true);
intent.putExtra("C", true);
sendStickyBroadcast(intent);
后来以以下形式发出了一个粘性意图:
Intent intent = new Intent("some.custom.action");
intent.putExtra("A", true);
intent.putExtra("B", false);
sendStickyBroadcast(intent);
“C”的键是否会停止存在,还是会保留为true的值?
答案 0 :(得分:1)
对任何感兴趣的人:
新意图会覆盖先前的意图,导致额外的不再存在。