I have imageview in xml layout... I have animation.xml with list of frames....
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();
}
});
This code starts animation...... but image view, which was activated by findViewId doesn't dissappears, and while animation goes - this image is on display.... Help!!! how can I remove it?????