__________ is used to create custom adapter for ListView.
-
ListAdapter
-
BaseAdapter
-
CustomAdapter
-
None of above
B
Correct answer
Explanation
BaseAdapter is the abstract base class that you extend to create custom adapters for ListView and other AdapterView widgets. ListAdapter is an interface, not a class you extend. CustomAdapter is not a built-in Android class - it's a name you might give to your own implementation.