我有一个将scaletype设置为matrix的ImageView,并希望在转换矩阵后得到一个带有图像边界的Rect。
我如何得到这样的直肠?感谢。
答案 0 :(得分:10)
ImageView imageView = (ImageView)findViewById(R.id.imageview);
Drawable drawable = imageView.getDrawable();
Rect imageBounds = drawable.getBounds();
然后使用Matrix.mapRect。