我想從我的應用程序在Android中打開默認日曆應用程序。我確實得到了一些關於此的鏈接從Android的另一個應用程序打開默認日曆應用程序
Intent calendarIntent = new Intent() ;
calendarIntent.putExtra("beginTime", tempCal.getTimeInMillis());
calendarIntent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
calendarIntent.setClassName("com.android.calendar","com.android.calendar.AgendaActivity");
startActivity(calendarIntent);
這會打開日曆。但是,我希望日曆應用以月份模式打開(顯示月份中的天數列表)。我需要幫助。
感謝提前:)
欲瞭解更多信息,請閱讀日曆應用程序 – thepoosh
的閱讀[啓動程序活動源代碼](https://github.com/android/platform_packages_apps_calendar/blob/master/src/com/android/calendar/AllInOneActivity.java)只需要一個有用的插件,如果你需要日曆類型的觀點。 [鏈接](http://stackoverflow.com/a/8242625/539472) – Chaitanya