执行Fade_out动画android

时间:2013-11-13 07:18:06

标签: android animation

每当键盘点击与视图上的图像匹配时,我想执行淡出动画 这是匹配点击的代码:

Animation animation = AnimationUtils.loadAnimation(this, R.anim.fadeout);
    animation.setAnimationListener(new AnimationListener() {

         @Override 
        public void onAnimationStart(Animation animation) { 
            imageView.setAlpha(255);
         }

         @Override 
        public void onAnimationRepeat(Animation animation) {

        }

          @Override 
          public void onAnimationEnd(Animation animation) {
              imageView.setVisibility(ImageView.GONE);
            }
        });

        if(counterOfindex==random.length){
            startAnimation();
         }else{
               startAnimation();
               Log.e("removed_id=:", ""+viewId);
            }

一旦点击键盘上的右键字母,我想慢慢淡出图像。

这是我的XML:

<?xml version="1.0" encoding="UTF-8"?>
   <set xmlns:android="http://schemas.android.com/apk/res/android"
       android:interpolator="@android:anim/decelerate_interpolator">
     <alpha android:fromAlpha="1.0" android:toAlpha="0.0" 

      android:duration="4000"/>
 </set>

问题:什么都没发生。代码就像以前运行一样运行。

0 个答案:

没有答案