我目前正在使用新的Google API 1.5测试版,但我找不到任何检索日历Feed的示例。发布here的示例似乎只提供了每个帐户的日历列表,而不是其活动。旧的GData API是现在检索日历源的唯一方法吗?如果是这样,如果我只想检索事件Feed,是否值得等待此功能出现在新API中?
答案 0 :(得分:1)
在其他非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();
}