Is it possible to set the absolute position of a view in android? (I know that there is an AbsoluteLayout, but it's deprecated...) Lets say I have a screen 240x320px, and I want to put an ImageView which is 20x20px with its center at the position (100,100). What do I have to do? Thanks for the help, this is driving me crazy.
|
feedback
|
|
You can use RelativeLayout. Let's say you wanted a 30x40 ImageView at position (50,60) inside your layout. Somewhere in your activity:
More examples: Places two 30x40 ImageViews (one yellow, one red) at (50,60) and (80,90), respectively:
Places one 30x40 yellow ImageView at (50,60) and another 30x40 red ImageView <80,90> relative to the yellow ImageView:
| |||||||||||
feedback
|
|
Just to add to Andy Zhang's answer above, if you want to, you can give param to rl.addView, then make changes to it later, so:
Could equally well be written as:
So if you retain the params variable, you can change the layout of iv at any time after adding it to rl. | |||
|
feedback
|
|
when you use arrays to set the positions of many ImageView, you should keep calling "new Relayout.LayoutParams( int , int ),or you will make all ImageViews the same position! | |||
|
feedback
|