Get number of unread sms

后端 未结 2 2017
礼貌的吻别
礼貌的吻别 2020-12-03 07:40

How can I get the number of unread sms in android?

2条回答
  •  臣服心动
    2020-12-03 08:29

    The simplest way I found out:

    Cursor c = getContentResolver().query(
        Uri.parse("content://sms/inbox"),
        new String[] {
            "count(_id)",
        },
        "read = 0",
        null,
        null
    );
    c.moveToFirst();
    int unreadMessagesCount = c.getInt(0);
    

提交回复
热议问题