java Android将活动保存到日历 - http://stackoverflow.com/a/16871763/4549947
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Android将活动保存到日历 - http://stackoverflow.com/a/16871763/4549947相关的知识,希望对你有一定的参考价值。
if (Build.VERSION.SDK_INT >= 14) {
Intent intent = new Intent(Intent.ACTION_INSERT)
.setData(Events.CONTENT_URI)
.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, beginTime.getTimeInMillis())
.putExtra(CalendarContract.EXTRA_EVENT_END_TIME, endTime.getTimeInMillis())
.putExtra(Events.TITLE, "Yoga")
.putExtra(Events.DESCRIPTION, "Group class")
.putExtra(Events.EVENT_LOCATION, "The gym")
.putExtra(Events.AVAILABILITY, Events.AVAILABILITY_BUSY)
.putExtra(Intent.EXTRA_EMAIL, "rowan@example.com,trevor@example.com");
startActivity(intent);
} else {
Calendar cal = Calendar.getInstance();
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", true);
intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "A Test Event from android app");
startActivity(intent);
}
以上是关于java Android将活动保存到日历 - http://stackoverflow.com/a/16871763/4549947的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法为日历视图中选择的每个日期保存活动的不同实例?
对于 GMT +x 区域,Android 日历全天活动日期提前一天
如何在本机反应中保存对本机日历(Android和iOS)的条目?
Android:将数据保存到服务器以避免活动破坏
查找活动组织者 - Android 日历活动
查看 Google 日历中创建的每个活动的会议链接