Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Array adapter and Cursor Adapter in Android

Tags:

android

What is the difference between Array adapter and Cursor Adapter in Android?

like image 870
Shane Avatar asked Apr 17 '12 10:04

Shane


1 Answers

Array Adapter : An adapter that takes an array of items and uses this array to build your list.

CursorAdapter : It takes a cursor which u receive as a result of a query to a sqlite database or a content resolver. You pass this cursor to the adapter and the list is created based upon the data present in the cursor.

like image 73
Shubhayu Avatar answered Oct 27 '22 14:10

Shubhayu