how to directly pass value of a variable from 1st activity to 3rd activity using putextra?
For example:
I have a variable A in the first screen (first activity)
Actually its not possible to go from 1st activity to 3rd directly...
You must have to follow the activity stack..
So if you want the data to be passed from 1st to 3rd follow by
1st -> 2nd -> 3rd
with the use of intent suggested by @Lalit Poptani