How can know a screen opening from which screen. for example: screen1 and screen2 can go(intent) to screen3. in screen3 how to find user is coming from screen1 or screen2?
Thanks
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.
Use
putExtra()andgetStringExtra()to solve your problem.like
In
Screen1 Activitywrite this codeIn
Screen2 Activity, write this codeAnd now on
onCreate()ofScreen3 ActivityHope this will clear…