請教一個關於android ImageView的一個問題:如何獲取ImageView中圖像的大小,以及它在屏幕中的區域(Rect)?(並非是要ImageView本身的大小和區域)
public void setImageMatrix(Matrix aMatrix) {
mPhotoView.setImageMatrix(aMatrix);
//mPhotoSrcRect:原圖像的區域;mPhotoDstRect:設置Matrix後的區域
aMatrix.mapRect(mPhotoDstRect, mPhotoSrcRect);
}