Android:联系人内容 Uri?
如何按内容 Uri 显示联系人。我知道联系人内容 uri Contacts.CONTENT_URI
但是,这些内容 uri 与 SDK 和 API 的版本不同,而且我想知道所有版本的内容 uri。因为,我将制作一个应用程序,例如独立于联系人的版本。任何一个都会列出所有版本的联系人的内容 uri。
How to display the Contacts by content Uri. I know the contacts content uri Contacts.CONTENT_URI
But, these content uri is differ from Version of SDK and API and also, i wan to know the content uri for all the versions. Because, i'm going to make one application like version independent of contact. Any one list out the content uri for all version of contacts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android SDK 中只有两个联系人内容提供程序:
Contacts
和ContactsContract
。后者适用于 Android 2.x 及更高版本。但是,其中每个都有多个CONTENT_URI
值,具体取决于您尝试与之交互的数据的哪些方面。这是一个示例项目,演示如何在其中两个之间进行选择通过静态初始值设定项中的反射来获取
CONTENT_URI
值。这是一个示例项目,演示如何在其中两个之间进行选择
CONTENT_URI
通过静态初始值设定项中的条件类加载来获取值。There are only two content providers in the Android SDK for contacts:
Contacts
andContactsContract
. The latter is for use on Android 2.x and higher. However, each of those have multipleCONTENT_URI
values, depending upon what facets of the data you are trying to interact with.Here is a sample project demonstrating how to choose between two of those
CONTENT_URI
values via reflection in a static initializer.Here is a sample project demonstrating how to choose between two of those
CONTENT_URI
values via conditional class loading in a static initializer.