如何在android中加载辅助联系人?

发布于 2024-10-31 01:03:02 字数 57 浏览 1 评论 0原文

我正在开发一个安卓应用程序。我想从联系人中提取信息(例如家庭或办公室的辅助电话号码)。有什么建议吗?

I am developing an android application. I want to extract information (e.g secondary phone number of home or office) from contacts. Any suggestions?

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

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

发布评论

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

评论(1

孤云独去闲 2024-11-07 01:03:02

您需要对所有电话运行查询。

            Cursor phones = cr.query(Phone.CONTENT_URI, null, Phone.CONTACT_ID + " = " + id, null, null);
            try {
                phones.moveToFirst();
                while (!phones.isAfterLast()) {
                    ContactPhone phone = new ContactPhone();
                    String number = phones.getString(phones.getColumnIndex(Phone.NUMBER));
                    // 0 = false | 1 = true
                    int primary = phones.getInt(phones.getColumnIndex(Phone.IS_PRIMARY));
                    int type = phones.getInt(phones.getColumnIndex(Phone.TYPE));
                    //Do whatever you want with this info
                    phones.moveToNext();
                }
            } finally {
                if (phones != null) {
                    phones.close();
                }
            }

You will need run a query for all phones..

            Cursor phones = cr.query(Phone.CONTENT_URI, null, Phone.CONTACT_ID + " = " + id, null, null);
            try {
                phones.moveToFirst();
                while (!phones.isAfterLast()) {
                    ContactPhone phone = new ContactPhone();
                    String number = phones.getString(phones.getColumnIndex(Phone.NUMBER));
                    // 0 = false | 1 = true
                    int primary = phones.getInt(phones.getColumnIndex(Phone.IS_PRIMARY));
                    int type = phones.getInt(phones.getColumnIndex(Phone.TYPE));
                    //Do whatever you want with this info
                    phones.moveToNext();
                }
            } finally {
                if (phones != null) {
                    phones.close();
                }
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文