java - Does putExtra() method of class Intent return a value of Intent object? -
I am a new novice learning about Android development after the tutorial on In addition to the additional data put in using the getIntent.getextras, the following activity can be accessed into a bundle object The bundle object can then be used to return data using GetString by using additional message as a key. developer.android.com The class code of
putExtra () gives a value of the object. But the code for the tutorial is
intent.putExtra (EXTRA_MESSAGE, the message); . If so, then the method can not return a value. Can you tell me why? Thanks awfully.
Comments
Post a Comment