In android: I\'m trying to take data from one activity/screen to another.
Let\'s say I\'m adding two numbers. I layout my first screen (xml) with 2 EditText views, a
I suppose that You're starting "next screen" using Intent (it's the way it should be done).
In Intent you can pass extras (putExtra) and in onCreate in "next activity" you can getIntent().getXExtra() (substitute X with field type)
getIntent().getXExtra()