gpt4 book ai didi

Android:发送短信后更新发送框

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

我的应用程序发送一条短信,我想更新手机发件箱就好像短信是用户发送的一样。如何做到这一点?

最佳答案

您需要在 smsManager.sendTextMessage(number, null,desc, sentPI, deliveredPI); 之后添加以下行::

ContentValues values = new ContentValues();

values.put("address", number);
values.put("body", desc);

getApplicationContext().getContentResolver().insert(Uri.parse("content://sms/sent"), values);

关于Android:发送短信后更新发送框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7763575/

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