Android如何用矩阵获取imageview的边界

时间:2011-12-21 13:39:32

标签: android matrix imageview scale bounds

我有一个将scaletype设置为matrix的ImageView,并希望在转换矩阵后得到一个带有图像边界的Rect。

我如何得到这样的直肠?感谢。

1 个答案:

答案 0 :(得分:10)

ImageView imageView = (ImageView)findViewById(R.id.imageview);
Drawable drawable = imageView.getDrawable();
Rect imageBounds = drawable.getBounds();

然后使用Matrix.mapRect。