Hi I want to know a basic mechanism in android platform. We know when we want to pass data to another activity, the normal approach is creating an intent and use the method call putExtras to create a tag for the data and pass the data through intent. The called activity will retrieve the data by getExtras or similar methods. My question is does this work like clipboard, i.e. putting information in a shared place and later retrieve it? If this is the case, then how this things work? What is the clip board like mechanism working behind?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Well if you see you will find Bundle in onCreate method like onCreate(bundle). you will have bundle in every activity . bundle is like a briefcase what u do on ONE activity u open that briefcase and put some values in it close that and when you go to another class (activity) let suppose TWO. u take that briefcase open it and get that value out and use it. it doesnt work like clipboard you arnt copying or pasting it. I hope that will help. |
|||