I want to add or read the fields of contact like i am getting the telephone home no
ContactList clist;
Contact con;
String no;
if(cList.isSupportedAttribute(Contact.TEL, Contact.ATTR_HOME)) {
con.addString(Contact.TEL, Contact.ATTR_HOME, no);
}
and mobile no
if(cList.isSupportedAttribute(Contact.TEL, Contact.ATTR_MOBILE)) {
con.addString(Contact.TEL, Contact.ATTR_MOBILE, mb);
}
now i want to get the fields internet telephone, push to talk, mobile(home), mobile(business), dtmf, shareview, sip, children, spouse and some more fields
please help me..
Thanks in advance