一旦调用此代码:
Animation newAnimation = new RotateAnimation( recordedOffsetOrientation, offsetedOrientation, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
我怎样才能摧毁那个物体?
我发现调用setVisibility(View.GONE);
应用了 RotateAnimation 的 ImageView 是不可能的。所以这意味着我需要在尝试隐藏它之前销毁这个对象,对吧?如果是,该怎么做?
我尝试了 newAnimation.reset();
andnewAnimation = null;
并且第一个选项给了我一个错误(应用程序迷恋),第二个选项不能解决问题。
我还尝试在这里和android开发文档上搜索答案,但没有成功找到它。