I need to pass data's (String) from one screen to another screen. At the time of button click i need to pass values from first screen to the next screen.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can pass along data as extras in the intent that starts the second activity:
In the oncreate method of your profile activity you can access the extras:
If you are new to Android, it might help to read through the examples in the developer docs, like the notepad tutorial. |
|||
|
|
|
Register an onClickListener for the button and pass the required data by adding it to the Intent.
You can get the data in Activity2 by
|
|||
|
|
|
A better way to do it (since you can access this value from anywhere) might be using sharedPrefrences. But that would depned on your application. http://developer.android.com/reference/android/content/SharedPreferences.html |
|||
|