重复android动画

时间:2013-02-22 09:56:40

标签: android android-animation

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.vitesse);

    gpsManager = new GPSManager();

    gpsManager.startListening(getApplicationContext());
    gpsManager.setGPSCallback(this);
    Typeface tf = Typeface.createFromAsset(getAssets(),
            "font/DS-DIGI.TTF");
     TextView  loding =(TextView)findViewById(R.id.info_message);
            loding.setTypeface(tf);
            AlphaAnimation fadeIn = new AlphaAnimation(0.0f , 1.0f ) ; 
            AlphaAnimation fadeOut = new AlphaAnimation( 1.0f , 0.0f ) ; 
            loding.startAnimation(fadeIn);
            loding.startAnimation(fadeOut);
            fadeIn.setDuration(500);
            fadeOut.setDuration(1200);
            fadeOut.setStartOffset(1200+fadeIn.getStartOffset()+1200);     
            measurement_index = AppSettings.getMeasureUnit(this);
}

我想重复一下textview加载动画,直到从GPS获取信息

4 个答案:

答案 0 :(得分:97)

this

animation.setRepeatCount(Animation.INFINITE);

答案 1 :(得分:12)

Android为您提供了优雅的机制来表示加载过程。您可以使用带有缩放/ alpha动画的不确定ProgressBarImageView,而不是使TextView本身设置动画。

也许您可能会发现这个动画很有用,可以同时为动画制作alpha和缩放。根据您的偏好改变参数:

file R.anim.alpha_scale_animation

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
    android:fromXScale="0.7"
    android:toXScale="1.0"
    android:fromYScale="0.7"
    android:toYScale="1.0"
    android:pivotX="50%p"
    android:pivotY="50%p"
    android:duration="4000"
    android:repeatCount="infinite"
    />

<alpha
    android:fromAlpha="0.0"
    android:toAlpha="1.0"
    android:duration="2000"
    android:repeatMode="reverse"
    android:repeatCount="infinite"
    />
</set>

然后在您的代码中启动它:

Animation connectingAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.alpha_scale_animation);
myView.startAnimation(connectingAnimation);

并阻止它:

myView.clearAnimation();
connectingAnimation.cancel();
connectingAnimation.reset();

您还可以使用ProgressButtonView之类的库在同一个小部件中同时支持用户交互和加载过程。

希望这些解决方案对任何人都有用:)

答案 2 :(得分:7)

fadeIn.setRepeatCount(int count)

fadeIn.setRepeatMode(AlphaAnimation.INFINITE(or any other repeat mode reletaed yo your usage)) 

您可以使用这些方法来控制重复。

如果需要,可以实施

    //anim = your animation 


anim.setAnimationListener(new AnimationListener() 
        {

            public void onAnimationStart(Animation arg0) 
            {
                // TODO Auto-generated method stub

            }


            public void onAnimationRepeat(Animation arg0)
            {
                // TODO Auto-generated method stub

            }

            public void onAnimationEnd(Animation arg0)
            {


            }
        });

如果你想突然停止你的动画。 使用yourview.clearAnimation()我希望这有帮助。

答案 3 :(得分:0)

要重复动画,只需在xml文件中添加代码,该文件位于我们创建动画对象的anim文件夹文件中。

  1. android:repeatCount =“ infinite”
  2. android:repeatMode =“重新启动”