public void onClick(View v) {
ImageView image = (ImageView) inflate.inflate(R.layout.ani_image_view, null);
mAllImageViews.add(image);
image.setX(10);
image.setY(100);
}
I try position a new ImageView
at the coordinates 10,100. I also tried position the ImageView
a 2000,100 but the ImageView
keeps appearing at the same place either way.
I suspect it has to do with pixel density. What is the relation between float pixels and dpi values?
Whatever issues you have they are unrelated to
setX()
orsetY()
and pixel density. AnywaysetX()
andsetY()
expect an amount of pixels. If you look at the source code ofsetX()
andsetY()
you see this:In other words they basically just call
setTranslationX()
andsetTranslationY()
. If yourView
is unaffected by calls tosetX()
andsetY()
I would first look for other causes. For example you may be trying to callsetX()
andsetY()
on the wrongView
or another part of your code later on may overwrite your changes. I cannot give you a more detailed answer than that with the information you provided.