Good evening.
My doubt is simple.
My app has a system in which I open 5 activities to register (first to activity 1, then to 2 and so on. imagine that it is something like a windows installation where there are several windows with "next") >
From the fifth activity it returns 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 that the application will get very heavy after multiple registrations?