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 a linear layout and small view (50px - 50px), all I want to do is to move this view in to the parent (linear layout in my case). It doesn't have to be linear layout but if possible I want my wrapper to be linear layout. enter image description here

What is the right way to move a drawable in the parent ? my small green view is an image (R.drawable.myimage) and I want to be able to easily move this image in the parent, the movement should me smooth

share|improve this question
1  
are you talking about animating this view? – g.revolution Nov 20 '11 at 21:14
well all I want to do is to move from right to left (basically yes like an animation) – Lukap Nov 20 '11 at 21:22

1 Answer

The easiest solution is the built-in TranslateAnimation.

If you're moving in straight lines, it works fine.

You may need to be more specific about your needs: when will it animate? What types of paths will it follow?

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.