완료된 통화와 연관된 연락처 검색
BlackBerry 단말기의 통화 기록에서 완료된 통화와 연관된 연락처를 검색할 수 있습니다.
코드 샘플
String phoneNum = "519-555-0151";
PhoneCallLogID callLog = new PhoneCallLogID(phoneNum);
BlackBerryContact contact = callLog.getContact();
if (contact != null)
{
String[] name = contact.getStringArray(Contact.NAME, 0);
add(new RichTextField("The matching contact is " + name[Contact.NAME_GIVEN]
+ " " + name[Contact.NAME_FAMILY]));
}
else
{
add(new RichTextField("There is no matching contact"));
}
다음 주제: 전화 번호로 연락처 검색
이전 주제: 통화중 전화와 연관된 연락처 검색