Android Question Long form - optimal approach

ThePuiu

Active Member
Licensed User
Longtime User
I have to make a form with a relatively large number of input fields. The client wants the form to be scrollable vertically. What is the best approach to this problem? I was thinking of a customListView with a single item that comes from a panel that contains all the input fields. The application must run correctly both on phones with smaller screens (Samsung S9) but also on tablets with a display larger than 7 inches. Is that ok or is there another approach?
 

JohnC

Expert
Licensed User
Longtime User
Create a Layout that contains all the input views, then load that layout into the panel of Scrollview:


 
Last edited:
Upvote 0
Top