Which method of the Intent class allows you to pass information to the target?
Answers
Answered by
0
Answer:
Explanation:
You can add extra data with various putExtra() methods, each accepting two parameters: the key name and the value. You can also create a Bundle object with all the extra data, then insert the Bundle in the Intent with putExtras()
Similar questions