如何在android中调整具有大屏幕尺寸图像的中等屏幕尺寸图像
我已经为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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.