对于 Android,有没有办法确定已向联系人发送了多少条短信?

发布于 2024-10-11 03:34:06 字数 147 浏览 5 评论 0原文

我正在从 ContractContacts 读取联系人数据,并且可以查找 TIMES_CONTACTED (这对我有用),但此字段仅适用于对该联系人的呼叫。我还对通过短信或电子邮件联系联系人的次数感兴趣。

有谁知道这个信息是否可用?我一直在寻找但没有发现任何东西。

I'm reading contact data from ContractContacts, and can lookup TIMES_CONTACTED (which is useful to me), but this field only applies to calls to that contact. I'm also interested in the number of times a contact has been contacted via SMS or email.

Does anyone know if this information is available? I've been searching but haven't come across anything.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

书信已泛黄 2024-10-18 03:34:06

对于 SMS,您需要直接访问位于 content://sms/inbox 的收件箱,并执行数据库查询来计算与匹配联系人对应的行数。

像这样的东西:

String personAddress = addressFromContact();
Uri smsUri = new Uri("content://sms");
if (smsUri != null) {
  Cursor smsCursor = getContentResolver().query(smsUri, null, "address=?", new String[] {personAddress}, null);
  int smsCount = smsCursor.getCount();
  }

For SMS, you'll want to access the inbox located at content://sms/inbox directly and perform a database query to count the number of rows corresponding to the matching contact.

Something like:

String personAddress = addressFromContact();
Uri smsUri = new Uri("content://sms");
if (smsUri != null) {
  Cursor smsCursor = getContentResolver().query(smsUri, null, "address=?", new String[] {personAddress}, null);
  int smsCount = smsCursor.getCount();
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文