What is the difference between a list and a table?

On the Android Development page, I found that a listview is a group of views that lists items, and a table is also a group of views that lists views. Does it all seem to form “list-like” things?

+3
source share
1 answer

ListView is a set of layouts that are automatically displayed one below the other. The developer adds new elements through a piece of code in the Activity. An example is the address book, in which you have many contacts one after another.

A TableView, on the other hand, is defined in a layout file and contains not only elements located below or above each other, but can also place elements on the left or right. TableView is exactly what it says: a table with rows and columns

+7
source

All Articles