What does intent.putExtra do?
android, java, mobile, operating-system
Solution
When you start a new Intent, you may want to pass some information to it. putExtra is how you so that. For instance if you made an intent to display account details, you might pass it the account id that is to be displayed. Basically any information you put in the extra bundle can be read later by the intent you've given it to.
Problem
i just started learning android development and a bit confused about what intent.putExtra does. Can somebody please explain this? Thanks