在我的应用程序中,我想向用户提供有关收件箱中已读和未读消息数量的信息。我搜索并发现android api中没有这样的内容://sms/read。我试过了这段代码到现在:
Uri number_of_sms_read = Uri.parse("content://sms/read");
Cursor c = ShowTheMessages.this.getContentResolver().query(number_of_sms_read, null,null, null, null);
c.moveToFirst();
NumberOfSmsReadInInbox = c.getCount();
你能告诉我是否可以在android中获取已读和未读消息的计数?提前致谢。