我想知道是否有任何URI或操作要转到手机中加载的日历应用。
答案 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);