What should I do to get my content provider to return the _count column with the count of records? The documentation says it is automatic, but maybe it\'s only taking about
If you are using ContentProvider.query() a Cursor is returned. Call Cursor.getCount() to get a count of records in the returned cursor.
ContentProvider.query()
Cursor
Cursor.getCount()