Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/184.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android日历同步_Android_Jquery_Mobile_Calendar_Sync - Fatal编程技术网

Android日历同步

Android日历同步,android,jquery,mobile,calendar,sync,Android,Jquery,Mobile,Calendar,Sync,我有一个用jQuery制作的日历。我已经在web上部署了它。我需要将日历事件与Android移动日历同步。有没有办法做到这一点?欢迎阅读和教程 谢谢, Ankit。您无法使用web应用程序与本地日历同步,因为您无法访问android意图等。但是你可以将事件与用户手机上的谷歌日历同步,android会自动将这些事件与本地日历同步 请参见谷歌日历API: 更新: 如果您从应用程序中获取ical文件,则必须解析ical文件并从中获取事件数据,然后使用Google日历API将这些事件导入其中 请参见如

我有一个用jQuery制作的日历。我已经在web上部署了它。我需要将日历事件与Android移动日历同步。有没有办法做到这一点?欢迎阅读和教程

谢谢,
Ankit。

您无法使用web应用程序与本地日历同步,因为您无法访问android意图等。但是你可以将事件与用户手机上的谷歌日历同步,android会自动将这些事件与本地日历同步

请参见谷歌日历API:

更新:

如果您从应用程序中获取ical文件,则必须解析ical文件并从中获取事件数据,然后使用Google日历API将这些事件导入其中

请参见如何在js中解析ical文件:

您也可以尝试此库:


我现在从我的应用程序中获取一个iCal文件。。。这可以与谷歌日历同步吗?