如何使用代码将android手机中的日历中的事件导出到vcs文件。或者是否有其他格式可以导出日历中的所有事件?
我怎么能在android中这样做? 感谢
答案 0 :(得分:0)
有no documented internal calendar API on Android。您需要使用Google Calendar API。
有一种访问日历应用内部数据库的非官方,不支持,不推荐和非面向未来的方式:http://www.developer.com/article.php/3850276
VCS文件位于vCalendar format,这是旧格式。替换为iCalendar。这是一种简单的,每行一种属性格式,易于实现。
答案 1 :(得分:0)
使用Google API Client Library for Java访问用户的Google日历数据。来自该项目的Here is a specific sample使用此库从Android访问Google日历。 Here is a conference video描述了这个库的使用。