android 获取联系人名字

发布于 2024-09-11 08:29:53 字数 552 浏览 2 评论 0原文

您好,我正在尝试获取联系人的名字。我知道如何获取联系人的全名,但我不知道如何仅获取姓名。有什么想法吗?

Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
String[] mPhoneNumberProjection = { PhoneLookup._ID, PhoneLookup.NUMBER, PhoneLookup.DISPLAY_NAME };
    Cursor cur = context.getContentResolver().query(lookupUri,mPhoneNumberProjection, null, null, null);
    try {
       if (cur.moveToFirst()) {
        String name =  cur.getString(2);
        // do something with the name
       }
    } finally {
       cur.close();
    }

Hi I am trying to get a contacts first name. I know how to get a contacts full name, but I cannot figure out how obtain just the name. any ideas?

Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
String[] mPhoneNumberProjection = { PhoneLookup._ID, PhoneLookup.NUMBER, PhoneLookup.DISPLAY_NAME };
    Cursor cur = context.getContentResolver().query(lookupUri,mPhoneNumberProjection, null, null, null);
    try {
       if (cur.moveToFirst()) {
        String name =  cur.getString(2);
        // do something with the name
       }
    } finally {
       cur.close();
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魂归处 2024-09-18 08:29:53

我没有亲自尝试过此操作,但您可能需要对第一个查询中的 PersonLookup.LOOKUP_KEY 执行进一步的 RawContacts.CONTENT_URI 查询,以便检索 < href="http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html" rel="nofollow noreferrer">StructuredName.GIVEN_NAME 字段。

I haven't personally tried this, but you may have to do a further RawContacts.CONTENT_URI query against the PersonLookup.LOOKUP_KEY from the first query, allowing you to retrieve the StructuredName.GIVEN_NAME field.

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