I'm designing an application on Android and I need to create a form with many fields, my idea is to make a form with different sections and instead of doing all the sections in the same activity with a vertical scroll I want to create one or several activities that through buttons back and forth through the sections ... This is when I have several questions:
Is it worthwhile to do everything in the same activity and change the fields that I am showing and enabling the fields you need or different activities ...?
I would also like to add that when I passed back and forth the fields that I had previously filled in that were self-filled, here I have another question:
Is it worthwhile for me to create something like a "Form" class that has attributes for each of the different fields and that I am going through activities or whatever the object is organized and when opening the activity get the object the attributes of the fields?