在Android中设置imageView的宽高应该用什么单位?
What unit should I use to set imageView width and height in Android?
imageView.getLayoutParams().height = 130;
imageView.getLayoutParams().width= 230;
这里130和230是DP还是pixel?
它们以像素为单位。 xml 之外的所有长度和宽度均以像素为单位。如果要以 dp 为单位指定尺寸,可以使用 Converting pixels to dp 将 DP 转换为像素。
imageView.getLayoutParams().height = 130;
imageView.getLayoutParams().width= 230;
这里130和230是DP还是pixel?
它们以像素为单位。 xml 之外的所有长度和宽度均以像素为单位。如果要以 dp 为单位指定尺寸,可以使用 Converting pixels to dp 将 DP 转换为像素。