我可以从网站向我的Android添加日历活动吗?

时间:2014-06-20 11:39:08

标签: android android-intent

在我的Android应用中,我可以使用此意图启动添加事件活动。

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");

intent.putExtra("beginTime", timestamp);
intent.putExtra("allDay", false);

intent.putExtra("endTime", timestamp+toAdd);
intent.putExtra("title", name + " at " + venue);
intent.putExtra("eventLocation", venue);

我可以在移动网站上以某种方式执行此操作吗?

1 个答案:

答案 0 :(得分:0)

可以创建VCALENDAR file之类的。下载文件后,它将插入您的日历应用程序