Skip to content Skip to sidebar Skip to footer

How To Move A Imagebutton Dynamically?

I'm new to Android I need to move the ImageButton dynamically, Like when i click the button it needs to be relocated into a new position. Im using AbsoluteLayout.

Solution 1:

Never ever use AbsoluteLayouts. Use animations instead. imageView.startAnimation(ANIMATION); You can find examples from google here and here


Post a Comment for "How To Move A Imagebutton Dynamically?"