List of utility methods to do ImageView Drawable Get
void | amendMatrixForCenterCrop(ImageView imageView) amend Matrix For Center Crop if (imageView == null) { return; Drawable drawable = imageView.getDrawable(); int drawableHeight = drawable != null ? drawable .getIntrinsicHeight() : 0; int drawableWidth = drawable != null ? drawable.getIntrinsicWidth() : 0; ... |