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

最佳答案

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

            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();
                }
            }

关于android - 如何在Android中加载辅助联系人?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5573924/

10-10 06:25