THE RESPONSE ACCEPTED INCORRECTLY
POSSIBLE IN SUPPLIER CONTENT
String[] columns = new String[] { "sum(" + columnName + ")" }; Cursor cursor = getContentResolver().query( content_uri, columns, selection, selectionArgs, sort ); int columnSum = cursor.getInt(0);
Only the mistake Tom made, he forgot to make:
cursor.moveToFirst();
source share