如何获取 ImageView 中位图的原始尺寸?

发布于 2024-10-09 04:35:37 字数 483 浏览 2 评论 0原文

看起来我可能会忽略一些明显的东西,但我无法弄清楚如何检索 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攀登最高峰 2024-10-16 04:35:37

您可以使用 getDrawable().getIntrinsicHeight() 命令,我认为这可以解决问题。请参阅此处的 SDK 文档。

You could use the getDrawable().getIntrinsicHeight() command, I think that would do the trick. See SDK documentation here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文