How to launch Android Calendar application using Intent (Froyo)

后端 未结 6 1380
被撕碎了的回忆
被撕碎了的回忆 2020-12-01 02:00

I want to open up the Calendar application from an android application. When i searched online, all i got is to create new events using intent. I could find Intents to open

6条回答
  •  生来不讨喜
    2020-12-01 02:16

    By a process of tedious experimentation, I've found that:

    Intent calendarIntent = new Intent() ;
    calendarIntent.setClassName("com.android.calendar","com.android.calendar.AgendaActivity");

    ...works for me to launch the Calendar's Agenda Activity. Haven't tried, but perhaps com.android.calendar.DayActivity, .WeekActivity,and .MonthActivity will launch the corresponding Activities.

提交回复
热议问题