Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to check a incoming number whether that is existing in blackberry contact list or not.. if it is there i want to display its contact name..

Thanks in advance..

share|improve this question
1  
if incoming number is a existing number, device will automatically display his name. – Vivart Aug 5 '10 at 10:20

1 Answer

i think this will help you
1. add phone listener

Phone.addPhoneListener(new AbstractPhoneListener(){
            public void callIncoming(int callId) {
                String number = Phone.getCall(callId).getPhoneNumber();
                search(number);
                super.callIncoming(callId);
            }
        });

2.search in the address book

public void search(String number) throws PIMException{
        PIM pim = PIM.getInstance();
        BlackBerryContactList contacts = (BlackBerryContactList) pim
        .openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);
        Contact template = contacts.createContact();
        template.addString(Contact.TEL, Contact.ATTR_MOBILE, number);
        Enumeration matches = contacts.items(template);
        if (matches.hasMoreElements())
        {
            Contact contact = (Contact)matches.nextElement();
            if (contact.countValues(Contact.NAME) > 0){
                String[] name = contact.getStringArray(Contact.NAME, 0);

                synchronized (Application.getEventLock()) {
                    UiEngine ui = Ui.getUiEngine();
                    Screen screen = new Dialog(Dialog.D_OK,
                            name[Contact.NAME_GIVEN], Dialog.OK, Bitmap
                            .getPredefinedBitmap(Bitmap.EXCLAMATION),
                            VerticalFieldManager.VERTICAL_SCROLL);
                    ui.pushGlobalScreen(screen, 1, UiEngine.GLOBAL_QUEUE);
                }
            }

        }
    }

update: in blackberry os 6 You can look up the contact for an active call by using the PhoneCall.getContact() method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.