ContentResolver cr = getContentResolver(); Cursor cur = cr.query(Uri.parse(\"content://sms/conversations/\"), null,null,null, null);
is not wo
String[] projection = {"thread_id", "MAX(date)", "COUNT(*) AS msg_count", "body"}; Cursor cursor = getContentResolver().query(Telephony.Sms.CONTENT_URI, projection, "thread_id) GROUP BY (thread_id", null, null);