从 Android ID 获取短信详细信息

发布于 2024-11-07 19:22:44 字数 157 浏览 3 评论 0原文

我想获取短信的详细信息(号码、正文、到达时间);我只知道短信的ID。 我可以使用此 ID 查询“content://sms”并获取详细信息吗?

目前我可以进行循环并查询每条消息并获取详细信息。但是,当您必须从 1000 条短信中获取 10 条短信详细信息时,这种方法效率不高......

I want to get Details of SMS(Number, Text Body, Time of coming); And i only know the id of sms.
Can i query to "content://sms" with this id and get details?

At the moment i can make a loop and query for every message and get details. But that is not efficient when you have to get single sms details 10 times from 1000 sms.....

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

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

发布评论

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

评论(1

伪装你 2024-11-14 19:22:44

我自己弄清楚了:

Uri myMessage = Uri.parse("content://sms/");
ContentResolver cr = getContentResolver();
Cursor c = cr.query(myMessage, new String[] { "_id", "address", "date", "body","read" },"_id = "+smsID, null, null);

c.moveToFirst();

String Number = c.getString(c.getColumnIndexOrThrow("address")).toString();

String ReadStatus = c.getString(c.getColumnIndex("read"));
String Body = c.getString(c.getColumnIndexOrThrow("body")).toString();
            
c.close();

我错过了条件并将光标移至第一个。

I figured it out myself:

Uri myMessage = Uri.parse("content://sms/");
ContentResolver cr = getContentResolver();
Cursor c = cr.query(myMessage, new String[] { "_id", "address", "date", "body","read" },"_id = "+smsID, null, null);

c.moveToFirst();

String Number = c.getString(c.getColumnIndexOrThrow("address")).toString();

String ReadStatus = c.getString(c.getColumnIndex("read"));
String Body = c.getString(c.getColumnIndexOrThrow("body")).toString();
            
c.close();

I was missing the condition and moving the cursor to first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文