Android:如何获取内容 URI
我是 android 编程新手,想知道是否有内容 URI 列表可供参考,
例如。 content://sms/inbox - 是用于访问 SMS 收件箱的内容 URI。
是否存在这样的列表,它提供了可与 android 系统一起使用来获取数据的所有内容 URI。我搜索了 android SDK 文档,但找不到所有这些文档,例如。上述短信收件箱中没有列出。
谢谢。
I am new to android programming and wanted to know if there is a list of content URI available for reference
for eg. content://sms/inbox - is content URI to access SMS inbox.
is there any such list which provides all the content URIs which can be used with the android system to get the data. I have searched the android SDK documentation and could not find all of them , for eg. the above SMS inbox one is not listed there.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这不是“用于访问 SMS 收件箱的内容 URI”。这是一个指向应用程序使用的内容提供程序的 Uri,该应用程序可能(或可能不)存在于任何设备上,并且 您已被告知不是 Android SDK 的一部分。
所有记录和支持的内容都在
android.provider
包中。这是因为它不是操作系统的一部分,就像 Outlook API 不是 Windows 的一部分一样。
No, that is not "content URI to access SMS inbox". That is a Uri pointing to a content provider used by an application that might (or might not) exist on any device and that you have been told are not part of the Android SDK.
All of the documented and supported ones are in the
android.provider
package.That would be because it is not part of the operating system, any more than an Outlook API is part of Windows.