╔══════════════════════════════════════════════╗   ^
║ 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,即使它有默认的高度和宽度


当前回答

我的朋友,通过这个u并没有得到存储在db中的图像的高度。但是你得到了视图高度。为了获得图像的高度,你必须从db,s图像创建位图。然后你可以获取imageview的高度和宽度

其他回答

最简单的方法是在活动的onWindowFocusChanged方法中获取ImageView的宽度和高度

 @Override
public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);

    height = mImageView.getHeight();
    width = mImageView.getWidth();

}

我只是设置了这个属性,现在Android OS会处理所有事情。

android: adjustViewBounds = " true "

在你的layout.xml中使用这个,你已经种植了你的ImageView:D

ImageView的维度为0的原因是因为当你查询它们时,视图还没有执行布局和测量步骤。你只是告诉视图它将如何在布局中“表现”,但它仍然没有计算出将每个视图放在哪里。

你如何决定图像视图的大小?难道不能简单地使用本地实现的伸缩选项之一吗?

Post到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();

            }
});

我对这个问题的回答可能会对你有所帮助:

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()方法中添加你的图像缩放工作。