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

2010-04-26 Thread Anurag Singh
Thanks Mark for your valuable note. Best Regards, Anurag Singh On Mon, Apr 26, 2010 at 12:11 AM, Mark Murphy mmur...@commonsware.comwrote: Anurag Singh wrote: But, there must be some standard way to do this. Trek suggest, Start an activity with it's intent set to a standard email URI -

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

2010-04-25 Thread Anurag Singh
How you have open default mail client? I want to do same thing. -- Best Regards, Anurag Singh On Fri, Apr 23, 2010 at 4:49 PM, Tejas jasani.te...@gmail.com wrote: Hi, What basically i wanna do is I have got three buttons in my app, one for calendar, one for contacts and third for mail.

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

2010-04-25 Thread TreKing
On Fri, Apr 23, 2010 at 6:19 AM, Tejas jasani.te...@gmail.com wrote: The mail code works perfectly fine but somehow calendar and contact code which i have doesnt work good, What does doesnt work good mean? It crashes? It opens the wrong thing? It verbally insults you? What? can any one

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

2010-04-25 Thread Anurag Singh
Is there any place where developer can easily find URI for Contact, Calender, Mail etc. - Anurag Singh On Sun, Apr 25, 2010 at 2:23 AM, Anurag Singh anusingh...@gmail.com wrote: How you have open default mail client? I want to do same thing. Start an activity with it's intent set to a

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

2010-04-25 Thread Mark Murphy
Anurag Singh wrote: Is there any place where developer can easily find URI for Contact, Calender, Mail etc. Contacts are managed by a content provider -- Uri values for accessing those providers can be found in the android.provider package. Calendar is not part of the Android SDK. No mail

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

2010-04-25 Thread Anurag Singh
But, there must be some standard way to do this. Trek suggest, Start an activity with it's intent set to a standard email URI - Android will find the best match of the apps that can handle that type of intent. What is the standard email URI? how it could be standard if it's not part of SDK. -

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

2010-04-25 Thread Mark Murphy
Anurag Singh wrote: But, there must be some standard way to do this. Trek suggest, Start an activity with it's intent set to a standard email URI - Android will find the best match of the apps that can handle that type of intent. What is the standard email URI? how it could be standard if

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

2010-04-25 Thread TreKing
On Sun, Apr 25, 2010 at 1:41 PM, Mark Murphy mmur...@commonsware.comwrote: I believe TreKing was slightly mistaken in his choice of terms. Indeed. In my haste I think I confused email and web urls. Sorry for the confusion and thanks for clarifying Mark.

[android-developers] Starting default calendar and contacts application

2010-04-23 Thread Tejas
Hi, What basically i wanna do is I have got three buttons in my app, one for calendar, one for contacts and third for mail. when i click on those buttons corresponding application should get open. The mail code works perfectly fine but somehow calendar and contact code which i have doesnt work