Android“content//sms/”中的值的含义是什么?内容提供商?
我查询“content//sms/”,但我不知道某些字段的含义。它们是 -
- 线程 ID
- 协议
- 状态
- Reply_Path_Present
- Service_Center
我在 LogCat 中检查了它们,发现这些值是:
- 线程 ID:1 到 6 等。
- 协议:null / 0
- 状态:-1
- Reply_Path_Present:null / 0
- Service_Center:null
请告知我这些值的含义是什么。
I queried "content//sms/" and I don't know what some fields mean. They are -
- Thread ID
- Protocol
- Status
- Reply_Path_Present
- Service_Center
I checked them in LogCat and found the values to be these:
- Thread ID : 1 to 6 etc..
- Protocol : null / 0
- Status : -1
- Reply_Path_Present : null / 0
- Service_Center : null
Please tell me what the meanings of those values are.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Cursor.getColumnNames()
检索任何内容提供者的列名称,例如对于
content://sms/inbox
这会产生 _id、thread_id、地址、人员、日期、协议、读取、状态、类型、回复路径当前、主题、正文、服务中心,锁定在我的手机上。您还可以查看
SmsProvider
但它不是公共 API 的一部分。You can use
Cursor.getColumnNames()
to retrieve the column names of any content provider, e.g.For
content://sms/inbox
this yields _id, thread_id, address, person, date, protocol, read, status, type, reply_path_present, subject, body, service_center, locked on my phone.You can also have a look at the
SmsProvider
but it is not part of the public API.以下是确定特定 Cursor 具有的所有列的方法。
打印出来以了解表中的所有列。
The folling is the way to determine all the columns that a particular Cursor has .
Print this out to know what are all the columns in the table .