I can get the number of unread messages like this:
final Uri SMS_INBOX = Uri.parse("content://sms/inbox");
Cursor c = getContentResolver().query(SMS_INBOX, null, "read = 0", null, null);
int unreadMessagesCount = c.getCount();
c.deactivate();
Is there any similar way to get the number of unread messages from whatsapp?
I have searched google and took a glance at the whatsapp api but did not find anything usefull.