I just started learning developing android app using Android Studio, and I made a sample app that will store a value from two ExitText on one activity (firstActivity) and load these two values on the other activity (secondActivity) when I click the 'load' button on the secondActivity. However I couldn't load them on the secondActivity right from the firstActivity. Can someone help me with this.
Thanks in advance.
Edit:
Here is the scenario.
I have three activities say ActivityOne, ActivityTwo and ActivityThree
On ActivityOne I have EditText1, EditText2 and Button1 When I click Button1 data I entered into EditText1 and EditText2 should be saved. (Sharedpreferences)
On ActivityTwo I have another button called ButtonShow. When I click ButtonShow it should open ActivityThree with the values I stored previously from ActivityOne (EditText1 & EditText2).
Thank you very much for your help.