在我的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);
我可以在移动网站上以某种方式执行此操作吗?