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


当前回答

最简单的方法是在活动的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);
            }

//就是这样。快乐的编码。

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

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

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

}

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

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

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

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

android: adjustViewBounds = " true "

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