Android:ViewProperty Animator无法在3.0模拟器上运行

时间:2012-07-10 11:11:49

标签: android animation

我在我的应用程序中使用了一些Viewproperty动画。一旦它在Android 3.0平板电脑上编译它的工作正常,如果在3.0模拟器应用程序崩溃运行并且它在logcat上显示错误。

代码:

ImageButton home = (ImageButton)findViewById(R.id.Home);
home.animate().setDuration(200);
smmslogo.animate().alpha(1);

错误:

java.lang.NullPointerException
at android.view.ViewPropertyAnimator.animatePropertyBy

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

我认为崩溃与http://code.google.com/p/android/issues/detail?id=18803

中的错误有关

请尝试使用此调用:

ObjectAnimator.ofFloat(home, "alpha", 0f, 1f).setDuration(200).start();