Multiple choice

__________ is used to create custom adapter for ListView.

  1. ListAdapter

  2. BaseAdapter

  3. CustomAdapter

  4. None of above

Reveal answer Fill a bubble to check yourself
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.