Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不能使用“内容://短信”?适用于所有 Android 设备?我正在使用“SmsManager”,但没有在电话亭输出中添加短信。我使用“content://sms/outbox”来保存信息。如何使用“SmsManager”?谢谢。
发送消息后,您必须将 SMS 写入 cr。
ContentValues values = new ContentValues(); values.put("address", phone); values.put("body", message); getContentResolver().insert(Uri.parse("content://sms/sent"), values);
这需要短信写入权限,并且必须在发送短信后完成。