要转到日历应用程序的Intent URI

时间:2010-08-10 20:41:05

标签: android

我想知道是否有任何URI或操作要转到手机中加载的日历应用。

问题类似于Intent URI to go to favorite contacts

2 个答案:

答案 0 :(得分:1)

日历应用程序没有标准Intent,抱歉!不同的设备和用户将有不同的日历,没有什么不同,不同的Windows PC将有不同的日历。

答案 1 :(得分:1)

我终于找到了: - )

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