我想从 Android 应用程序打开日历应用程序
我想从 Android 应用程序打开日历应用程序。当我在网上搜索时,我得到了这个代码。但是它在下面的android 2.1中不起作用。 是否可以从 2.1 以下的 Android 应用程序启动日历应用程序?如果可能的话,有人可以帮我吗?
Calendar tempCal = (Calendar) mCalendar.clone();
tempCal.set(year, month, day);
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);
I want to open up the Calendar application from an android application. When i searched online, all i got this code.but it didn't work the below android 2.1.
Is it possible to launch Calender application from an android application below 2.1? If possible, could someone please help me with it.
Calendar tempCal = (Calendar) mCalendar.clone();
tempCal.set(year, month, day);
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);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我还推荐这个:
如何使用 Intent (Froyo) 启动 Android 日历应用程序
I also recommend this:
How to launch Android Calendar application using Intent (Froyo)
要启动将事件添加到日历的活动,请使用:
To launch the activity for adding an event to the calendar, use: