gpt4 book ai didi

android - 如何获取android中已读消息的数量?

转载 作者:行者123 更新时间:2023-11-29 16:10:54 25 4
gpt4 key购买 nike

在我的应用程序中,我想向用户提供有关收件箱中已读和未读消息数量的信息。我已经搜索并发现 content://sms/read 在 android api 中不存在。到目前为止,我已经尝试过这段代码:

        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中获取已读和未读消息的数量?提前致谢。

最佳答案

我想你可以看看这个与你的问题相反的问题:Get number of unread sms

它为查询提供了 WHERE 条件 "read = 0",因此您可能需要提供一个 "read = 1"

关于android - 如何获取android中已读消息的数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13488308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com