Android: Change Screens [duplicate]

Mobile Technologies Mobile Computing . 2 years ago

  2   1   0   0   0 tuteeHUB earn credit +10 pts

5 Star Rating 5 Rating
_x000D_ _x000D_ Possible Duplicate: How do I pass data between activities in Android? My App starts and loads the first screen, then the users changes to the next screen by clicking a button with: Intent intent = new Intent(DashboardActivity.this, LoginActivity.class); startActivity(intent); and then from there, the user changes to the next screen, again with: Intent intent = new Intent(LoginActivity.this, NextActivity.class); startActivity(intent); now there should be 3 screens on the stack and in this last screen, I want to go all the way back to the first screen, how do I do that with one click? I want to send putExtra("") data from that last screen to the first screen.

Posted on 01 Sep 2022, this text provides information on Mobile Computing related to Mobile Technologies. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Write Your Comments or Explanations to Help Others



Tuteehub forum answer Answers (1)


profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago
_x000D_ Add this In NextActivity, Intent myIntent = new Intent(NextActivity.this, DashBoardActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); myIntent.putExtra("UserName",UserName); startActivity(myIntent); In DashBoardActivity, Intent intent = getIntent(); UserName=intent.getStringExtra("UserName");
2 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Important Mobile Technologies Links

tuteehub community

Join Our Community Today

Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.

tuteehub community