安卓可以下载任何类型的日历事件的? 如果是这样,什么是文件结构?(Can Android dow

2019-07-30 09:26发布

我查了好久试图确定什么格式的日历邀请/事件的Android设备可以下载并纳入系统日历 - 但我一直没能找到任何东西!

默认情况下,设备不支持i​​Cal或的vCal - 和格式两者都被明确界定,并轻松地创建。 例如,这个PHP脚本完全适用于iPad或iPhone的 - 因此,当您访问的页面,该装置邀请你将它添加到您的日历:

<?
$ical = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "@yourhost.test
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:19970714T170000Z
DTEND:19970715T035959Z
SUMMARY:Bastille Day Party
END:VEVENT
END:VCALENDAR";

header("Content-type: application/force-download");
header('Content-Disposition: attachment; filename=calendar.ics');
echo $ical;
exit;
?>

我试图创建为Android类似的东西,但我无法找到什么文件时,它会高兴地下载本地的任何指导, 没有一些第三方应用程序

任何意见或帮助感激!

谢谢,Kaiesh

Answer 1:

荣誉圣地亚哥Rebella: 日历添加事件从网络下载.vcs到Android

<?php
header("Content-Type: text/x-vCalendar");
header("Content-Disposition: attachment; filename=london2012.vcs");
?>


文章来源: Can Android download any type of calendar event? If so, what is the file structure?