- 实际图像源高度 = 180px 和宽度 = 192px
- ImageView 的宽度为 90 像素,高度为 60 像素。
我想知道实际图像高度和宽度是如何在屏幕上显示的。有人可以帮助我吗?
我尝试了以下但它没有给我我正在寻找的结果
- 如果我做 imageview.getWidth 我得到 ImageView 的 90px
- 如果我执行 imageView.getMeasuredWidth 我得到 ImageView 的 90px
- 如果我做 imageview.getDrawable.getIntrinsicWidth 我得到 192px 的实际源宽度
- 如果我做 imageview.getDrawable.getBounds 我得到 192px 的实际源宽度
- 如果我检索位图并执行 getScaledWidth(metrics) 我得到 192px 的实际源宽度