【发布时间】:2015-08-14 16:17:39
【问题描述】:
在 Android Studio 中尝试 Google 的示例时,出现以下错误:
Error:(52, 46) error: incompatible types
required: CellEntry
found: SpreadsheetEntry
在线:
// Iterate through each cell, printing its value.
for (CellEntry cell : feed.getEntries()) {
我使用了来自 https://developers.google.com/google-apps/spreadsheets/data 的示例“使用基于列表的提要”
另外,是否可以在不进行身份验证的情况下从公共电子表格中获取数据?
【问题讨论】:
标签: java android google-sheets google-spreadsheet-api