0
Good night.
My doubt is simple.
My app has a system where I open 5 activities for registration (first Activity 1, then 2 and so on. imagine it is something like a windows installation where you have several windows with "next")
From the fifth Activity it goes back to the first, and when the user needs a new registration, the process happens again.
This is the code I use to pass between activities:
Intent novaActivity = new Intent(getApplicationContext(), proximaActivity);
novaActivity.putStringArrayListExtra("activities", activitiesSelecionadas);
startActivity(novaActivity);
finish();
Is there any possibility of the application getting too heavy after several registrations?
If from the fifth Activity the user returns to the first after finishing the registration the best is to clean the Back Stack and the problem ceases to exist.
– Isac
I will search on. Thanks for the tip!
– Matheus Suffi