I have two activities
Class MainActivity{
//has a single button and
//invokes SubActivity
}
Class SubActivity{
//This activity several textfields
}
While SubActivity
is alive, I press back button and go back to MainActivity.
When I go back to MainActivity
again, I would like to get the textfield values from the MainActivity
. I tried using context but it doesn't seem to work. Any suggestion is welcome.