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


当前回答

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

//初始化图像数组

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

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

其他回答

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

我认为你可以让Android操作系统为你解决这个问题。将ImageView上的缩放类型设置为fitXY,它所显示的图像将调整为适合当前视图的大小。

<ImageView 
    android:layout_width="90px" 
    android:layout_height="60px"
    android:scaleType="fitXY" />

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

            }
});

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

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