Which is the correct explanation of ListView?
Which is the correct explanation of ListView?
ListView in Android is a ViewGroup that displays a list of scrollable items. It is highly versatile, allowing developers to use custom views for each item. Although it's common to use TextView in a ListView, it is indeed possible to define other types of views for each item, making it a unique feature of ListView.
D. ListView has a function to display a list of uniquely defined Views other than TextView.