╔══════════════════════════════════════════════╗ ^
║ ImageView ╔══════════════╗ ║ |
║ ║ ║ ║ |
║ ║ Actual image ║ ║ |
║ ║ ║ ║ |60px height of ImageView
║ ║ ║ ║ |
║ ║ ║ ║ |
║ ╚══════════════╝ ║ |
╚══════════════════════════════════════════════╝
<------------------------------------------------>
90px width of ImageView
我有一个具有一些默认高度和宽度的图像视图,图像存储在 db 中,我想根据 Imageview 高度宽度缩放图像。因为我不希望它给出默认值,因为当我改变它的高度和宽度时,我也必须在代码中改变它。
我正在尝试获取 ImageView 的高度和宽度,但在这两种情况下都会返回 0。
int height = ((ImageView) v.findViewById(R.id.img_ItemView)).getHeight();
即使它具有默认的高度和宽度,这也会返回 0
android:scaleType="centerInside"
吗?
我对 this question 的回答可能会对您有所帮助:
int finalHeight, finalWidth;
final ImageView iv = (ImageView)findViewById(R.id.scaled_image);
final TextView tv = (TextView)findViewById(R.id.size_label);
ViewTreeObserver vto = iv.getViewTreeObserver();
vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
public boolean onPreDraw() {
iv.getViewTreeObserver().removeOnPreDrawListener(this);
finalHeight = iv.getMeasuredHeight();
finalWidth = iv.getMeasuredWidth();
tv.setText("Height: " + finalHeight + " Width: " + finalWidth);
return true;
}
});
然后,您可以从 onPreDraw() 方法中添加图像缩放工作。
我刚刚设置了这个属性,现在 Android OS 正在处理所有事情。
机器人:adjustViewBounds =“真”
在您种植 ImageView 的 layout.xml 中使用它:D
我可以通过它的drawable获得图像的宽度和高度;
int width = imgView.getDrawable().getIntrinsicWidth();
int height = imgView.getDrawable().getIntrinsicHeight();
发布到 UI 线程对我有用。
final ImageView iv = (ImageView)findViewById(R.id.scaled_image);
iv.post(new Runnable() {
@Override
public void run() {
int width = iv.getMeasuredWidth();
int height = iv.getMeasuredHeight();
}
});
ImageView 的尺寸为 0 的原因是,当您查询它们时,视图还没有执行布局和测量步骤。您只是告诉视图它在布局中的“行为”,但它仍然没有计算每个视图的放置位置。
你如何决定给图像视图的大小?您不能简单地使用本机实现的缩放选项之一吗?
你的 xml 文件:
<ImageView android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image"
android:scaleType="fitXY"
android:adjustViewBounds="true"/>
你的java文件:
ImageView imageView = (ImageView)findViewById(R.id.imageView);
int width = imageView.getDrawable().getIntrinsicWidth();
int height = imageView.getDrawable().getIntrinsicHeight();
我认为您可以让 Android 操作系统为您解决这个问题。将 ImageView 上的比例类型设置为 fitXY
,它显示的图像将调整大小以适合视图的当前大小。
<ImageView
android:layout_width="90px"
android:layout_height="60px"
android:scaleType="fitXY" />
最简单的方法是在activity的onWindowFocusChanged方法中获取一个ImageView的宽高
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
height = mImageView.getHeight();
width = mImageView.getWidth();
}
如果您动态创建了多个图像,请尝试以下:
// 初始化你的图像数组
private ImageView myImages[] = new ImageView[your_array_length];
// 以编程方式创建并添加到父视图
for (int i = 0; i < your_array_length; i++) {
myImages[i] = new ImageView(this);
myImages[i].setId(i + 1);
myImages[i].setBackgroundResource(your_array[i]);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
frontWidth[i], frontHeight[i]);
((MarginLayoutParams) params).setMargins(frontX_axis[i],
frontY_axis[i], 0, 0);
myImages[i].setAdjustViewBounds(true);
myImages[i].setLayoutParams(params);
if (getIntent() != null && i != your_array,length) {
final int j = i;
myImages[j].getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
public boolean onPreDraw() {
myImages[j].getViewTreeObserver().removeOnPreDrawListener(this);
finalHeight = myImages[j].getMeasuredHeight();
finalWidth = myImages[j].getMeasuredWidth();
your_textview.setText("Height: " + finalHeight + " Width: " + finalWidth);
return true;
}
});
}
your_parent_layout.addView(myImages[i], params);
}
// 而已。快乐编码。
我的朋友,你没有得到存储在 db 中的图像高度。但是你得到了视图高度。为了获取图像的高度,你必须从 db,s 图像创建位图。然后你可以获取 imageview 的高度和宽度