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?
The ScrollView is a very useful container which allows you to show many other views on a small screen. The ScrollView holds an inner panel view which actually contains the other views. The user vertically scrolls the inner panel as needed. In this example we will load images from the sdcard and...
There are many ScrollView examples on the forum, I made a summary of them for my own use and I think it would be interesting for others. Creating a table view based on ScrollView Gridline in TableView using Scrollview based on Creating a table view based on ScrollView with separation...