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.
私の質問は基本的に、インテント オブジェクトにある値が 2 回目に送信されたときに同じ値を持つかどうかです。もしそうなら、これを実行できる回数に制限はありますか?
Intent について話すと、それはPerform any Operationに使用されます。
例えばintent.putExtra(key1,value);
intent.putExtra(key1,value);
すべてはに依存しますvalue。値が null でない場合は、何度でも使用できます。制限はありません。
value
何度でも使用できますintent.putExtra(key,value); が、値とキーが null ではなく、キーが以前に使用したキーと異なることを確認する必要があります。
intent.putExtra(key,value);