Sana
Sana

Reputation: 9915

Intent URI to go to Calendar App

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 Intent URI to go to favorite contacts

Upvotes: 1

Views: 2441

Answers (2)

Sana
Sana

Reputation: 9915

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);

Upvotes: 1

CommonsWare
CommonsWare

Reputation: 1006584

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.

Upvotes: 1

Related Questions