I need to pass the value of a variable That Is created in a class A to a class B. I'm still a beginner and I can not figure out how to proceed. Could you give me a hand?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Please see below 2 options for passing a String value: through the constructor and through a public setter method.
|
|||
|
|
|
to pass any data from one page to other just put these lines of code this will pass your data from one class to the other class.
this code will call the ShowDescription class pass the data in "feed_type" variable. and can get data in the showDescription class by th efollowing LOC
for more can see the following links. http://grabcodes.blogspot.in/2012/08/passing-data-between-two-activities.html |
|||
|
|
|
Pass the value in the Constructor of class B. if your both class extends Activity then use intent to pass the data from one Activity to another Activity like this
and on activityB oncreatmethod(), you can get it like
|
|||
|
|