Problem inretrieving the name field in symbian using j2me
- by learn
I have added the firstname, middlename, lastname, suffix, prefix in symbian and now i want to retrieve each of this attributes of name.
I am getting the firstname and lastname together by
if(contactlist.isSupportedField(Contact.FORMATTED_NAME) && contact.countValues(Contact.FORMATTED_NAME)0) {
mycontact.setName(contact.getString(Contact.FORMATTED_NAME, 0));
}