gpt4 book ai didi

android - 如何获取我在 Android 中的联系人列表中的人的电子邮件 ID

转载 作者:行者123 更新时间:2023-11-29 22:09:47 24 4
gpt4 key购买 nike

我只想获取给定电话号码的用户的电子邮件 ID。所以我必须获得号码类似于 986879899 的用户的电子邮件 ID。所以请给我建议这个问题的解决方案或从我得到解决方案的任何链接。

我想补充一件事,即如何获得联系人号码。通过引用我的联系人列表中的人名从我的手机。

最佳答案

    This is the solution of the above problem. Ashutosh given me the solution of the problem.


Cursor emails = getContentResolver().query(ContactsContract.CommonDataKinds.Email.CONTENT_URI, null, ContactsContract.CommonDataKinds.Email.CONTACT_ID + " = " + contactId, null, null);
while (emails.moveToNext()) {
// This would allow you get several email addresses
String emailAddress = emails.getString(
emails.getColumnIndex(ContactsContract.CommonDataKinds.Email.DATA));
System.out.println("email address might be"+emailAddress);
}
emails.close();

Thanks Ashutosh :)

关于android - 如何获取我在 Android 中的联系人列表中的人的电子邮件 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9919872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com