Hi Group,

I am able to launch contact application from the following way. I am
also able to show Name and only one Phone number. My problem is :-

1- How can I show multiple phone number [like Home, Mobile, Work etc]
when I am launching contact application. How can I do that?
2- In Contact application there is one option *More*, which is an
expandable list. When I click that it open with other many fields like
Notes, Website, Nicknam etc. How can I fill those fields while
launching the Contact application?

My code is as follows :-

-------------------------------- Code
--------------------------------
Intent intent = new Intent(Intent.ACTION_INSERT, People.CONTENT_URI);

intent.putExtra(Contacts.Intents.Insert.NAME, mFullName);

intent.putExtra(Contacts.Intents.Insert.PHONE, mPhoneMob);
intent.putExtra(Contacts.Intents.Insert.PHONE_TYPE,
Contacts.PhonesColumns.TYPE_MOBILE);
startActivity(intent);
-------------------------------- Code
--------------------------------


Any help is really appreciated.
Thanks,
AJ

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.

Reply via email to