动画无法解析为某种类型

时间:2013-01-17 06:14:54

标签: android android-animation

我正在写

Animation anIn;

但是动画错误,

Animation cannot be resolved to a type;

我不想导入

android.view.animation;

我想使用nineoldandroids库。因此,将该库项目导入工作空间,然后右键单击我的项目,属性,并在Android选项卡中引用工作空间中的库。 现在我可以看到com.nineoldandroids进口。 但是错误仍然存​​在!

怎么了? 如何将示例从Android动画导入更改为nineoldandroids导入?

2 个答案:

答案 0 :(得分:3)

正如我在此处所见:http://nineoldandroids.com/

只有动画包和动画,例如您必须导入并使用ObjectAnimator代替Animation的视图

您可以下载nineoldandroid的来源,发现根本没有Animation类。

enter image description here

<强>已更新

Nineoldandroid库用于支持带有new(带有蜂窝(api11 +))动画api(Animators)的旧设备。因此,要使用api lvl 1附带的Animation类,您不需要使用oldnineandroid,因为这些类已经存在于所有Android手机中。

如果你想使用新的API,你只需要使用nineoldandroid。

了解=)的链接:http://www.informit.com/articles/article.aspx?p=1755915

答案 1 :(得分:-1)

在eclipse中转到'java build path'并使用add jars,首先删除android库引用。