nUIListElement
com.softwareag.mobile.runtime.nui.nUIListElement
Use to add a scrollable list of elements to the view. Elements are fetched on an as-needed basis.
Usage Notes
Windows Phone and Windows 8/Windows RT do not support pull-to-refresh, spinners, or infinite scrolling events.
Example
This code sample instantiates the user's IListViewProvider class, MyListProvider, and then uses it for the creation of a nUIListElement with a fixed height.
MyListProvider provider = new MyListProvider();
nUIListElement list = new nUIListElement(provider);
list.setHeight(400);
view.add(list);
Android | RecyclerView |
iOS | Custom implementation based around UITableView. |
Windows Phone | Based around System.Windows.Controls.Canvas with the ScrollViewer. |
Windows RT | Based around Windows.UI.Xaml.Controls.Canvas with internal ScrollViewer. |