Android:如何获取内容 URI

发布于 2024-09-24 22:37:46 字数 213 浏览 2 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以歌曲疗慰 2024-10-01 22:37:46

例如。 content://sms/inbox - 是用于访问 SMS 收件箱的内容 URI

不,这不是“用于访问 SMS 收件箱的内容 URI”。这是一个指向应用程序使用的内容提供程序的 Uri,该应用程序可能(或可能不)存在于任何设备上,并且 您已被告知不是 Android SDK 的一部分

是否有这样的列表,它提供了可与 android 系统一起使用来获取数据的所有内容 URI。

所有记录和支持的内容都在 android.provider 包中。

例如。上述短信收件箱未列出。

这是因为它不是操作系统的一部分,就像 Outlook API 不是 Windows 的一部分一样。

for eg. content://sms/inbox - is content URI to access SMS inbox

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.

is there any such list which provides all the content URIs which can be used with the android system to get the data.

All of the documented and supported ones are in the android.provider package.

for eg. the above SMS inbox one is not listed there.

That would be because it is not part of the operating system, any more than an Outlook API is part of Windows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文