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(...)
548k questions
547k answers
4 comments
86.3k users