如何获取 ImageView 中位图的原始尺寸?
看起来我可能会忽略一些明显的东西,但我无法弄清楚如何检索 ImageView 中显示的位图的原始(未缩放)尺寸。
例如,如果我使用 Bitmap b = BitmapFactory.decodeResource(...) 加载位图,我可以从 b.getWidth() 和 获取这些尺寸b.getHeight()
,我可以使用 setImageBitmap(b)
将位图传递到 ImageView 中。但是如果我有 ImageView 的子类,有什么方法可以检索这些尺寸而不必显式传递它们?我想我正在寻找 ImageView 的 setImageBitmap()
方法的 getImageBitmap()
类似方法,它将检索我可以调用 getWidth()< 的 Bitmap 对象/code> 和
getHeight()
开启。不过,任何其他检索原始尺寸的方法也可以。
It seems like I might be overlooking something obvious, but I can't figure out how to retrieve the raw (unscaled) dimensions of a bitmap being displayed in an ImageView.
For example, if I load a bitmap using Bitmap b = BitmapFactory.decodeResource(...)
, I can get those dimensions from b.getWidth()
and b.getHeight()
, and I could pass the bitmap into an ImageView using setImageBitmap(b)
. But if I have a subclass of ImageView, is there any way to retrieve those dimensions without having to pass them in explicitly? I guess I'm looking for a getImageBitmap()
analog of ImageView's setImageBitmap()
method, which would retrieve a Bitmap object that I can call getWidth()
and getHeight()
on. Any other way to retrieve the original dimensions would work too, though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 getDrawable().getIntrinsicHeight() 命令,我认为这可以解决问题。请参阅此处的 SDK 文档。
You could use the getDrawable().getIntrinsicHeight() command, I think that would do the trick. See SDK documentation here.