Difference between listview and cardview
Answers
Answered by
0
Hi friend,
List view:-
A list view is an adapter view that does not know the details, such as type and contents, of the views it contains.
Card view:-
CardView is another major element introduced in Material Design. Using CardView you can represent the information in a card manner with a drop shadow and corner radius which looks consistent across the platform.
HOPE THIS HELPS YOU:-))
List view:-
A list view is an adapter view that does not know the details, such as type and contents, of the views it contains.
Card view:-
CardView is another major element introduced in Material Design. Using CardView you can represent the information in a card manner with a drop shadow and corner radius which looks consistent across the platform.
HOPE THIS HELPS YOU:-))
Answered by
0
ListView
is a view group that displays a list of scrollable items. The list items are automatically inserted to the list using an Adapter that pulls content from a source such as an array or database query and converts each item result into a view that's placed into the list.
CardView.
The RecyclerView is a more advanced and more flexible version of the ListView. This new component is a big step because the ListView is one of the most used UI widgets.
is a view group that displays a list of scrollable items. The list items are automatically inserted to the list using an Adapter that pulls content from a source such as an array or database query and converts each item result into a view that's placed into the list.
CardView.
The RecyclerView is a more advanced and more flexible version of the ListView. This new component is a big step because the ListView is one of the most used UI widgets.
Similar questions