Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?????

share|improve this question
post your imageViews's declaration in layout xml. – akkilis Jan 17 '12 at 17:05
could you tell how to do it? – timonvlad Jan 17 '12 at 18:55
I will, but I need to see you imageView declaration. I suspect you are using android:src="SOME_DRAWBLE" in your layout xml. If it is so, then the problem you reported is likely to happen. – akkilis Jan 17 '12 at 18:59
I have found my mistake!!! you were right! Thanks a lot!!!!!!!!!!!!!!!! – timonvlad Jan 18 '12 at 5:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.