1

我有一个 ImageView 需要从底部滑入。在那里停留 5 秒。然后滑出。我怎么做?没有用户干预。

谢谢拉杰什穆图

4

2 回答 2

2

好的,我找到了解决方案。在名为 popup_slider.xml 的 anim 文件夹中创建一个 xml

<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="true">
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0"  android:duration="100" />
    <translate android:fromYDelta="100%p" android:toYDelta="0%p"   android:startOffset="1000" android:duration="5000" android:zAdjustment="top"/>
    <alpha android:fromAlpha="0.99" android:toAlpha="1.0" android:startOffset="6000" android:duration="5000" />
    <translate android:fromYDelta="0%p" android:toYDelta="100%p"  android:startOffset="11000"  android:duration="5000" android:zAdjustment="bottom"/>    
    <alpha android:fromAlpha="1.0" android:toAlpha="0.0"  android:startOffset="16000"  android:duration="1000" />
</set>

在 Java 中实现 AnimationListener

public static void popUpAndDownAnimation(View v) {

Animation animation = AnimationUtils.loadAnimation(localContext, R.anim.popup_slider);  

    animation.setAnimationListener(new Animation.AnimationListener(){
    public void onAnimationEnd(Animation arg0) {
        popUpAdvertisementView.setVisibility(View.GONE);                    
    }
    public void onAnimationRepeat(Animation animation) {
        // TODO Auto-generated method stub              
    }
    public void onAnimationStart(Animation animation) {
        popUpAdvertisementView.setVisibility(View.VISIBLE);             
    }           
    });
    v.startAnimation(animation);
}
于 2010-02-24T04:28:32.373 回答
0

Android 有一组动画类,用于 View 上的简单动画。您正在寻找的是补间动画。他们提供了一个示例,听起来您可以在 XML 中完成大部分工作。祝你好运^_^

于 2010-02-24T04:30:54.363 回答