Google News
logo
Xamarin - Interview Questions
What is the difference between ListView And TableView?
ListView and TableView controls are similar. We can take them as a single control. The major difference between them is how they layout the items.

ListView : ListView control displays the stacks of data vertically. It is just like a standard Listbox. We use this control to display the order of data in the list, especially the long list, that requires scrolling, like a list of email messages, a list of contacts, or search results.

TableView : TableView displays the stacks of data horizontally in rows. We use this control when we need more space for rich visualization of the item to be displayed.
Advertisement