Android ImageView 和 Canvas 上的 Bitmap 大小不一样

发布于 2024-11-18 05:49:38 字数 147 浏览 3 评论 0原文

我的资源中有一个位图图像。

当我使用 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 技术交流群。

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

发布评论

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

评论(1

乖乖哒 2024-11-25 05:49:39

诀窍是创建一个缩放的位图,然后绘制。

my_bitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.my_bitmap);
my_bitmap = Bitmap.createScaledBitmap(my_bitmap, screenWidth, screenHeight, true);

The trick is to create a scaled bitmap and then draw.

my_bitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.my_bitmap);
my_bitmap = Bitmap.createScaledBitmap(my_bitmap, screenWidth, screenHeight, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文