Описание тега android-cursoradapter

CursorAdapter is an Android Adapter class which exposes data from a Cursor to an AdapterView.

The CursorAdapter introduces special methods related to working with the data Cursor. Also the CursorAdapter introduces a different implementation pattern than the list based adapters, as it recommends implementing the newView and bindView methods to build the row view(instead of just the getView method). Different subclasses of CursorAdapter(like SimpleCursorAdapter, ResourceCursorAdapter etc) are available for easy use so the user isn't required to provide the full implementation that the CursorAdapter needs. More information can be found in the documentation of the class.

Tag Usage:

android android-listview expandablelistview