How do I get UID for contact which is saved by using PIM in J2ME so that I can use that UID for deleting the contact in future if required?

link|improve this question
feedback

1 Answer

Try this:

if (contact.countValues(Contact.UID) > 0) {
String UID = contact.getString(Contact.UID, 0));
}
link|improve this answer
thnks...it work perfectly – user1122350 May 6 at 17:33
feedback

Your Answer

 
or
required, but never shown

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