Andriod insert contact with Intents.Insert not works
pI'm trying to develop a app in this I need to access the contacts to add
phone number with name. for this I'm using following code./p precodeIntent
intent = new Intent(Intents.Insert.ACTION);
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
intent.putExtra(Intents.Insert.NAME, Silambarasan);
intent.putExtra(Intents.Insert.PHONE, 9876543210L);
intent.putExtra(Intents.Insert.PHONE_TYPE, Phone.TYPE_MOBILE);
startActivity(intent); /code/pre pThis code opens the add contact screen,
but in the screen only name Silambarasan sent from this code. Phone Number
:9876543210L is not passed./p pDo I use correct way?/p pThanks in
advance./p