我一直在尝试基于日历示例实现SpreadSheet客户端。 我设法使用解析器和@Key属性获取电子表格,工作表提要和条目。 (explanation here) 但是,当我进入ListFeed响应时,数据存储在元素中,因此无法使用@Key功能 有没有办法自动解析这个?
答案 0 :(得分:0)
如果您想解析,例如:
<author>
<name>John Smith</name>
<email>john.smith.example@gmail.com</email>
</author>
您需要创建一个类作者
public class Author {
@Key("name")
public String name;
@Key("email")
public String email
}
在您的Feed类中,您添加:
@Key("Author")
Author author
这应该可以解决问题。