Issue
I have two activities, A & B. A has a button to go to B. B sets some parameters using Seekbars.
When I go back to A there is no problem. But, I when again go to B, the Seekbars do not show the changed value.
I tried looking for solutions and I came to know about "Intent" class but the concept is not clear to me.
What is a simple clean solution to see the changed values when going to the Activity B again from Activity A?
Solution
You should use intent.putExtra() and intent.getExtra(). You can see the example here; https://stackoverflow.com/a/14017737/8883361
Answered By - Yusuf Çağlar