在android中显示PNG文件(图像正在调整大小)

发布于 2024-09-15 23:33:38 字数 436 浏览 4 评论 0原文

我将图像拖到 Eclipse 中的 drawable-hdpi 文件夹中,当我将它们加载到程序中时,它们的大小是原始大小的 2/3。 (我的 500x150 .png 正在加载为 333x100 .png) 关于如何为 Android 创建/加载图像有什么建议吗?

private Bitmap mGrass;
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
mGrass = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.grass, options);

canvas.drawBitmap(mGrass, 0, 0, noPaint);

Im dragging my images into the drawable-hdpi folder in Eclipse and when I load them in the program they are 2/3rd the original size. (my 500x150 .png is being loaded as a 333x100 .png)
Any advice on how I should be creating/loading images for android?

private Bitmap mGrass;
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
mGrass = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.grass, options);

canvas.drawBitmap(mGrass, 0, 0, noPaint);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

思念绕指尖 2024-09-22 23:33:38

您使用的 AVD[Android 虚拟设备] 的 DPI 是多少?如果DPI为160,则请将您的图片放入mdpi,对于DPI超过240的手机,请将您的图片放入hdpi

Whats the AVD[Android Virtual Device]'s DPI you are using? If the DPI is 160, then please put your images into mdpi, hdpi for phones with DPI more than 240

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