Search code examples
androidandroid-arrayadapterandroid-cursoradapter

What is advantage Cursor Adapter over Array Adapter?


I am little bit confused to use which adapter best for me to retrieve data from a .mp3 file like Art, SongName, Artist etc.


Solution

  • CursorAdapter is more appropriate when there is a database because it does not load all the records as ArrayAdapter. It loads only the visible records.