Re: [android-developers] Re: Starting default calendar and contacts application

2010-04-28 Thread Anurag Singh
these are the permissions for contact. READ_CONTACTS, WRITE_CONTACTS - Anurag Singh On Mon, Apr 26, 2010 at 7:43 PM, AJ ajeet.invinci...@gmail.com wrote: @Anurag I didn't need any permission, as my requirement is to launch the Contact App. Thanks, AJ On Apr 26, 4:53 pm, Anurag Singh

[android-developers] Re: Starting default calendar and contacts application

2010-04-26 Thread AJ
On Apr 26, 8:44 am, Kumar Bibek coomar@gmail.com wrote: Contacts, well, It's open for any one to use. What to use. In android SDK 2.1 Contact has lot of Intents missing while launching Contact application. Thanks, AJ -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Starting default calendar and contacts application

2010-04-26 Thread Anurag Singh
Thanks Ajeet, have you set permission to write contact in your manifest.xml? - Auurag Singh On Mon, Apr 26, 2010 at 12:07 AM, AJ ajeet.invinci...@gmail.com wrote: Hi Anurag, You can start the contact activity in the following way:- Intent i = new

[android-developers] Re: Starting default calendar and contacts application

2010-04-26 Thread AJ
@Anurag I didn't need any permission, as my requirement is to launch the Contact App. Thanks, AJ On Apr 26, 4:53 pm, Anurag Singh anusingh...@gmail.com wrote: Thanks Ajeet, have you set permission to write contact in your manifest.xml? - Auurag Singh On Mon, Apr 26, 2010 at 12:07 AM, AJ

[android-developers] Re: Starting default calendar and contacts application

2010-04-25 Thread AJ
Hi Anurag, You can start the contact activity in the following way:- Intent i = new Intent(Intent.ACTION_INSERT,People.CONTENT_URI); i.putExtra(ContactsContract.Intents.Insert.NAME, AJ); startActivity(i); But I am facing some problem in passing the Extra data to the activity. It looks that

[android-developers] Re: Starting default calendar and contacts application

2010-04-25 Thread Kumar Bibek
Accessing Calendar Content Providers, I believe it not yet public. You can however try with the various examples available which use hard- coded calendar URIs. But till Google releases the content providers for the Calendar, it is not full - proof. Contacts, well, It's open for any one to use.