gpt4 book ai didi

android - 将短信插入收件箱 : android

转载 作者:行者123 更新时间:2023-11-30 03:27:38 25 4
gpt4 key购买 nike

How can I insert on SMS into inbox and set it as unread? I tried using the following code.

ContentValues values = new ContentValues();
values.put("address", "123456789");
values.put("body", "foo bar");
getContentResolver().insert(Uri.parse("content://sms/sent"), values);

插入有效。但我不知道如何将其设置为未读。另外请告诉我短信表列“状态”、“已读”和“已读”的类型是什么?我该如何使用它们?谢谢。

最佳答案

使用此 values.put("status", SmsManager.STATUS_ON_ICC_UNREAD);。状态可以是已读/未读/已读之类的任何东西。我已将其保留为未读状态。

Message status

values.put("read", true);  // As Read

values.put("read", false); // As Un Read

关于android - 将短信插入收件箱 : android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17985531/

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