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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.