如何在Android中读取联系人的生日?
我正在制作一个 Android 应用程序,对于该应用程序,我需要读取地址簿中存储的联系人的出生日期。有没有相关代码。 如何在 Android 2.0 上读取联系人显示了要读取的代码电话号码和电子邮件地址,但读取出生日期的代码不可用。提前致谢。
I am making an android app, and for that app, I need to read the birth dates of the contacts stored in my address book. Is there any code for that. How to read contacts on Android 2.0 shows the code to read the phone numbers and email addresses, but the code to read birth dates is not available. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ContactsContract.CommonDataKinds.Event.START_DATE
并将TYPE
设置为TYPE_BIRTHDAY
ContactsContract.CommonDataKinds.Event | rel="nofollow">ContactsContract.CommonDataKinds.Event | Android 开发者
Use the
ContactsContract.CommonDataKinds.Event.START_DATE
and set theTYPE
toTYPE_BIRTHDAY
ContactsContract.CommonDataKinds.Event | Android Developers