用于Java的Google-API日历提要



我目前正在使用新的Google API 1.5测试版,我找不到任何检索日历提要的示例。这里张贴的例子似乎只提供了每个帐户的日历列表,而不是他们的事件。旧的GData API是现在检索日历提要的唯一方法吗?如果是这样,如果我只想检索事件提要,是否值得等待这个特性出现在新的API中?

我在其他非android的例子中做了一些研究,发现这是可行的:

CalendarUrl url = new CalendarUrl(calendar.getEventFeedLink());
try {
  EventFeed feed = client.eventFeed().list().execute(url);
  for(EventEntry entry : feed.getEntries()) {
    // etc....
  }
}
catch(IOException e) {
  e.printStackTrace();
}

相关内容

  • 没有找到相关文章

最新更新