Android ImageView 和 Canvas 上的 Bitmap 大小不一样
我的资源中有一个位图图像。
当我使用 ImageView 绘制它时,它的大小与使用 Drawbitmap 在画布上绘制它时的大小不同。 无论我对位图使用什么密度( 160, 240 ),位图始终会缩放。 如何绘制位图,使其与使用 imageview 时的大小相同?
I have a Bitmap image in my ressources.
When i draw it using an ImageView, it doesn't have the same size as when I draw it on the canvas using Drawbitmap.
No matter what density I use to my bitmap ( 160, 240 ), the bitmap is always zoomed.
How to draw the bitmap so it has the same size as when I use an imageview ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍是创建一个缩放的位图,然后绘制。
The trick is to create a scaled bitmap and then draw.