从屏幕中滑出视图

时间:2011-07-19 16:42:20

标签: android android-animation

我有以下动画xml:

 <?xml version="1.0" encoding="utf-8"?>
 <translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta="0%"
android:toYDelta="300%"
android:duration="2000"
android:zAdjustment="bottom" />

但是当我在onCLick()上调用它时,View向下滑动直到它出来,然后它再次出现在它的默认位置。如何让它留在外面,直到我打电话给另一个动画? 感谢

1 个答案:

答案 0 :(得分:1)

Animation完成后,View.GONEView.setVisibility()设置为您正在翻译的视图,AnimationListener可以检测到该视图。