在eclipse中导入现有项目时出错

时间:2012-10-08 03:33:11

标签: android import

我正在使用此代码在eclipse中运行。Search for Download the sample

在eclipse中导入下载的项目后。

我收到错误
import android.animation.Animator;
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;

eclipse无法找到类 Animation,ObjectAnimator and ValueAnimator

任何建议都将不胜感激。 感谢

1 个答案:

答案 0 :(得分:1)

在eclipse BuildPath中包含你的动画jar。右键单击项目转到Buildpath->Configure Build Path ->Libraries并添加jar。您的Animator和其他类也可能使用错误的包名称。检查出。它应该解决这个问题。

相关问题