Android动画帧逐帧bug

时间:2012-01-17 16:37:13

标签: android android-layout

我在xml布局中有imageview ...我有带有框架列表的animation.xml ....

    final ImageView pygalo = (ImageView) findViewById(R.id.imageanimation);
    pygalo.setBackgroundResource(R.anim.animation);
    final AnimationDrawable pygaloanimation = (AnimationDrawable) pygalo.getBackground();
    pygalo.setOnClickListener(new OnClickListener() 
    {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub


            pygaloanimation.start();
        }
    });

此代码启动动画......但是由findViewId激活的图像视图不会消失,并且当动画进入时 - 此图像显示....帮助!我怎么能把它删除?????

0 个答案:

没有答案