我正在尝试使用 google api 从 android 访问 picasa。我正在关注一个通过以下方式解析 atom 的示例:
AlbumFeed 提要 = request.execute().parseAs(AlbumFeed.class);
为了使原子解析器工作,我知道我需要定义具有 @Key 注释的类,例如:
public class Link {
@Key("@href")
public String href;
@Key("@rel")
public String rel;
}
但是eclipse甚至没有编译这个 - 我不断得到: Key cannot be resolved as a type and The attribute value is undefined for the annotation type Key
我知道您可以在项目的 Eclipse 中定义注释,但我认为您需要一些处理类。
非常感谢任何帮助 - 让 eclipse 编译它以便我可以解析 Atom 有效负载的步骤是什么?
编译后,我知道如果我使用 proguard,我需要添加 -keepattributes Annotation ,Signature 。真的吗?还有其他陷阱吗?