Android Question Multi-Step Registration Form

Hello friends,
I am developing an application with B4A, and its registration and account creation section consists of 10 steps. Each step collects specific information from the user (such as phone number, temporary password, date of birth, first and last name, etc.).
My goal is to allow the user to go back to the previous page at each step and edit the entered information. This is exactly like the Google account creation process.
Since I am using B4XPages, I don't want to create a separate page for each step, as I think this method is non-standard and inefficient.
What is the best and most efficient way to do this?
 

Alexander Stolte

Expert
Licensed User
Longtime User
What is the best and most efficient way to do this?
The easiest way:
you can add your own layout to the view, for example to display a datepicker where you can query the user's birthday

or you can build your own with this view:
 
Upvote 0
Top