Reputation: 12582
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.
Upvotes: 1
Views: 1236
Reputation: 1783
Never ever use AbsoluteLayouts. Use animations instead. imageView.startAnimation(ANIMATION); You can find examples from google here and here