╔══════════════════════════════════════════════╗   ^
║ 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 OS会处理所有事情。

android: adjustViewBounds = " true "

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

其他回答

如果你动态创建了多个图像,试试这个:

//初始化图像数组

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);
            }

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

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

android: adjustViewBounds = " true "

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

我可以通过它的drawable获得图像的宽度和高度;

int width = imgView.getDrawable().getIntrinsicWidth();
int height = imgView.getDrawable().getIntrinsicHeight();

您的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();

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

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

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

}