4

我有一个包含自定义 ImageView、scaleType="centerInside" 的 RelativeLayout,我加载了一个位图(通常小于 imageView)。如何获得绘制位图的顶部/左侧位置?我需要能够在相对于位图的位置上添加视图。

   RelativeLayout view = (RelativeLayout) inflater.inflate(R.layout.scroll_scaled, container, false);
ContentImageView image = (ContentImageView) view.findViewById(R.id.base_page);
Bitmap bm = mInterfaceActivity.getPageImage(mPageNumber);
image.setImageBitmap(bm);`

布局文件 scrolled_scaled

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
    android:scaleType="centerInside"
    android:id="@+id/base_page"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff00ff00"
    android:contentDescription="@string/product_page"
    android:src="@android:drawable/ic_menu_report_image" >
</ImageView>
</RelativeLayout>
4

4 回答 4

3

您需要使用Drawable的边界自己进行数学计算。

ImageView test = (ImageView) findViewById(R.id.base_page);
Rect bounds = test.getDrawable().getBounds();
int x = (test.getWidth() - bounds.right) / 2;
int y = (test.getHeight() - bounds.bottom) / 2;

首先我们计算视图中没有被图像使用的空间。然后因为它是居中的,所以额外的空间在图像之前和之后均匀分布,所以它被绘制到View.

这些数字与视图的位置相关,但如果需要,您可以添加视图 X 和 Y。

于 2012-09-11T15:41:01.443 回答
3

此方法返回 imageView 中图像的边界。

/**
 * Helper method to get the bounds of image inside the imageView.
 *
 * @param imageView the imageView.
 * @return bounding rectangle of the image.
 */
public static RectF getImageBounds(ImageView imageView) {
    RectF bounds = new RectF();
    Drawable drawable = imageView.getDrawable();
    if (drawable != null) {
        imageView.getImageMatrix().mapRect(bounds, new RectF(drawable.getBounds()));
    }
    return bounds;
}
于 2017-07-04T08:18:00.837 回答
1

更新 2:如果您使用未指定的宽度和高度(例如 wrap_content),getX 和 getY 将返回 0。而不是iv.getX()iv.getY()用这个问题的答案替换它:获取相对于根布局的视图坐标,然后将图像的边界添加到这些值。

您可以通过将 ImageView 的位置添加到内部可绘制对象的左上边界来做到这一点。像这样的东西:

ImageView iv = (ImageView)findViewById(R.id.image_view);
Drawable d = iv.getDrawable();
Rect bounds = d.getBounds();
int top = iv.getY() + bounds.top;
int left = iv.getX() + bounds.left;

更新:对于缩放的图像,您必须将顶部和左侧坐标乘以图像比例以获得更准确的定位。你可以这样做:

Matrix m = iv.getImageMatrix();
float[] values = new float[9];
m.getValues(values);
float scaleX = values[Matrix.MSCALE_X];
float scaleY = values[Matrix.MSCALE_Y];

然后你必须将top乘以scaleY,将left乘以scaleX。

于 2012-09-11T14:22:14.863 回答
0

最终得到了一个两部分的解决方案,基于反馈和一些重试。

我创建了子视图并将它们添加到“近似”位置的RelativeLayout,但作为View.INVISIBLE。

我对 RelativeLayout ViewGroup 进行了超分类,在 onLayout 中,我遍历了子视图列表并将它们放在“正确”的位置,因为我现在有了 RelativeLayout 自我意识到它的扩展大小。

看起来很笨重,但它确实有效。

感谢大家的建议,我的解决方案是听取大家的建议。

于 2012-09-13T12:38:20.953 回答