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