Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题本质上是意图对象中的值在第二次发送时是否再次具有相同的值,如果是这样,是否可以限制执行多少次?
当我们谈论 Intent 时,它用于执行任何操作。
例如intent.putExtra(key1,value);
intent.putExtra(key1,value);
一切都取决于value. 如果您的值不为空,那么您可以根据需要多次使用它。它没有限制。
value
您可以使用任意次数,intent.putExtra(key,value); 但您必须确保 value 和 key 不为 null 并且 key 与以前使用的 key 不同。
intent.putExtra(key,value);