如何在android中调整具有大屏幕尺寸图像的中等屏幕尺寸图像

发布于 2024-12-12 17:08:38 字数 130 浏览 3 评论 0原文

我已经为 Android 开发了一个应用程序,现在我支持大屏幕设备。所以我为这个设备创建了一个图像。现在我想调整大图像的大小以适应中等屏幕尺寸。

比例是多少?例如,如果大屏幕的图像是 85x111(px),那么中屏幕的尺寸是多少?

I've develop an app for android and now I support large screen devices. So I create an image for this device. Now I want to resize large images for medium screen sizes.

What is the proportion? For example if an image for large screen is 85x111(px), what is the dimension for medium?

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

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

发布评论

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

评论(1

有不同的屏幕密度。 ldpi、mdpi、hdpi、xhdpi,如果您想支持所有屏幕,则必须为所有这些密度创建不同的图像。

请参阅下面的链接。

http://developer.android.com/guide/practices/screens_support.html

http://developer.android.com/resources/dashboard/screens.html

高清晰度~ 240dpi - 每英寸 240 像素。

mdpi ~ 160dpi - 每英寸 160 像素。

所以比例因子是 160/240 = 2/3。因此,如果 hdpi 的分辨率为 85 x 111,则 mdpi 的分辨率应为 85*2/3 x 111*2/3。

There are different screen densities. ldpi, mdpi, hdpi, xhdpi , you have to create different images for all these densities, if you would like to support all screen.

see the links below.

http://developer.android.com/guide/practices/screens_support.html

http://developer.android.com/resources/dashboard/screens.html

hdpi ~ 240dpi - 240 pixels per inch.

mdpi ~ 160dpi - 160 pixels per inch.

so the scaling factor is 160/240 = 2/3. so if you have 85 x 111 in hdpi, for mdpi it should be 85*2/3 x 111*2/3.

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