There's seemingly no way to launch the calendar app in a generic way.
I've written a widget which allows you to launch the calendar. I use
the following Intent:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.android.calendar",
"com.android.calendar.LaunchActivity");
startActivity(i);

However, this doesn't work on the Hero because HTC has apparently
replaced the calendar in their Sense UI. I'm looking for a "standard"
way to reach the calendar. I'd like for something like this to be
standardized:

Intent i = new Intent(Intent.ACTION_VIEW);
i.setType("text/calendar");
startActivity(i);

Does anyone think it would be worth trying to add this to the source?
It seems like there is a missing chunk of standards around calendar
events and/or iCal / vCal support. Does anyone know why?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to