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(...)
1.4m articles
1.4m replys
5 comments
57.0k users