What is the correct way to check if a PIM string array is supported?

can I use:

if (MyContactList.isSupportedField(Contact.ADDR)){...}

or would i be bettr to check :

if (MyContactList.isSupportedArrayElement(Contact.ADDR, Contact.ADDR_STREET))

or both?

The following is my problem code:

if (MyContactList.isSupportedField(Contact.ADDR)) {
//...
//...
String[] AaddressLines = CurrentContact.getStringArray(Contact.ADDR, 0);;
}

It doeasnt matter if i comment out the "if" block it always crashes. only fix i can see is to ignore addresses altogether, please help.

Thanks pedro

link|improve this question
feedback

1 Answer

Better way to do like this. Its working fine for me. See this sample,

String[] lists = pim.listPIMLists(PIM.CONTACT_LIST);
ContactList clist =  (ContactList) pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY, lists[index]);
Enumeration contacts = clist.items();
while (contacts.hasMoreElements()) {

Contact c = (Contact) contacts.nextElement(); 
int[] fields = clist.getSupportedFields();
for (int count = 0; count < fields.length; count++) {
int value = fields[count];
// do smething

if (value == Contact.ADDR && c.countValues(Contact.ADDR) > 0) {
String[] addr = c.getStringArray(Contact.ADDR, 0);
...
...
  }
 }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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