How can I change the position of view through code? Like changing its X, Y position. Is it possible?
For anything below Honeycomb (API Level 11) you'll have to use setLayoutParams(...).
setLayoutParams(...)
If you can limit your support to Honeycomb and up you can use the setX(...), setY(...), setLeft(...), setTop(...), etc.
setX(...)
setY(...)
setLeft(...)
setTop(...)
2.1m questions
2.1m answers
60 comments
57.0k users