我正在开发一个短信应用程序。通过使用短信内容提供商,我得到了所有字段。
Uri uriSms = Uri.parse("content://sms/inbox");
Cursor c = context.getContentResolver().query(uriSms, null,null,null,null);
_id
thread_id
address
person
date
read
status
type
subject
body
locked
我可以使用上述字段进行所有基本操作。现在我想设置一个短信锁定状态。我该怎么做?。从状态字段我总是得到-1。这意味着什么。我检查了收件箱和发件箱。请帮助我的朋友