Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在 android 中添加图像,例如 sencha touch 中的小、中、大和 xlarge 图像以及用于正常显示和 Retina 显示的 IOS 设备?sencha touch 框架中是否有任何内置功能或辅助功能?
您可以使用 Implementation ofMedia Queries来执行此操作。
Media Queries
查看下面的参考链接。
处理所有设备屏幕的媒体查询
HTML5 媒体查询
编辑 :
如果您需要单独定位 Retina 显示屏,您可以在媒体查询中使用此条件:
-webkit-min-device-pixel-ratio: 2
谢谢。