Android短信操作常见协议和常用代码

前端技术 2023/09/05 Android
content://sms/inbox    收件箱 
content://sms/sent    已发送 
content://sms/draft    草稿 
content://sms/outbox    发件箱 
content://sms/failed    发送失败 
content://sms/queued    待发送列表


sURLMatcher.addURI(\"sms\", null, SMS_ALL); 
sURLMatcher.addURI(\"sms\", \"#\", SMS_ALL_ID); 
sURLMatcher.addURI(\"sms\", \"inbox\", SMS_INBOX); 
sURLMatcher.addURI(\"sms\", \"inbox/#\", SMS_INBOX_ID); 
sURLMatcher.addURI(\"sms\", \"sent\", SMS_SENT); 
sURLMatcher.addURI(\"sms\", \"sent/#\", SMS_SENT_ID); 
sURLMatcher.addURI(\"sms\", \"draft\", SMS_DRAFT); 
sURLMatcher.addURI(\"sms\", \"draft/#\", SMS_DRAFT_ID); 
sURLMatcher.addURI(\"sms\", \"outbox\", SMS_OUTBOX); 
sURLMatcher.addURI(\"sms\", \"outbox/#\", SMS_OUTBOX_ID); 
sURLMatcher.addURI(\"sms\", \"undelivered\", SMS_UNDELIVERED); 
sURLMatcher.addURI(\"sms\", \"failed\", SMS_FAILED); 
sURLMatcher.addURI(\"sms\", \"failed/#\", SMS_FAILED_ID); 
sURLMatcher.addURI(\"sms\", \"queued\", SMS_QUEUED); 
sURLMatcher.addURI(\"sms\", \"conversations\", SMS_CONVERSATIONS); 
sURLMatcher.addURI(\"sms\", \"conversations/*\", SMS_CONVERSATIONS_ID); 
sURLMatcher.addURI(\"sms\", \"raw\", SMS_RAW_MESSAGE); 
sURLMatcher.addURI(\"sms\", \"attachments\", SMS_ATTACHMENT); 
sURLMatcher.addURI(\"sms\", \"attachments/#\", SMS_ATTACHMENT_ID); 
sURLMatcher.addURI(\"sms\", \"threadID\", SMS_NEW_THREAD_ID); 
sURLMatcher.addURI(\"sms\", \"threadID/*\", SMS_QUERY_THREAD_ID); 
sURLMatcher.addURI(\"sms\", \"status/#\", SMS_STATUS_ID); 
sURLMatcher.addURI(\"sms\", \"sr_pending\", SMS_STATUS_PENDING); 
sURLMatcher.addURI(\"sms\", \"sim\", SMS_ALL_SIM); 
sURLMatcher.addURI(\"sms\", \"sim/#\", SMS_SIM);

本文地址:https://www.stayed.cn/item/13527

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。