tags:

views:

59

answers:

2

Hi,

I would like to know if there is any URI or action to go to a calendar app loaded in the mobile.

The question is similar to http://stackoverflow.com/questions/3116147/intent-uri-to-go-to-favorite-contacts

A: 

There is no standard Intent for calendar applications, sorry! Different devices and users will have different calendars, no different than different Windows PCs will have different calendars.

CommonsWare
There is a Android specific calendar which comes along with Motorola milestone. Don't we have intent for that?
Sana
@Sana: The authors of that application have not documented an `Intent` designed for third parties to use to launch it.
CommonsWare
A: 

I finally found it :-)

Intent mailClient = new Intent(Intent.ACTION_VIEW);
                            mailClient.setClassName("com.google.android.calendar", "com.android.calendar.LaunchActivity");
startActivityForResult(mailClient, MAIL_APP);
Sana