Answer the question
In order to leave comments, you need to log in
Transitions between activities?
Activity ONE, when I click on the buttons on it, I get into the THREE or FOUR activity, the same goes for the TWO activity. How to programmatically read from which activity I got into activity three or four, and when I press the back button (3), go to the activity from which I got here? starts instantly.
Answer the question
In order to leave comments, you need to log in
To identify (where it came from), you need to use Intent
When calling an activity, place data
Intent intent = new Intent(this, THREE.class);
intent.putExtra("activity","first");
startActivity(intent);
Intent intent = getIntent();
String activity = intent.getStringExtra("activity");
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question