What is the difference between Array adapter and Cursor Adapter in Android?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.