将 iPhone 图形移植到 Android 时有经验法则吗?
我想将我的 iPhone 应用程序移植到 Android。该界面由专为 320x480 分辨率设计的图稿构建。当我为 Android 构建 XML 界面时,我需要采取哪些步骤,以便我的 GUI 能够兼容不同的屏幕尺寸(或者至少是最流行的屏幕尺寸......)?
I'd like to port my iPhone app to Android. The interface is constructed with artwork designed for 320x480 resolution. What steps do I need to take when I'm constructing the XML interface for the Android so that my GUI will be compatible with the different screen sizes (or at least the most popular ones...)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅支持多个屏幕一文。基本上,您将为每个图形执行以下操作之一:
ldpi
、mdpi
和hdpi
版本(上面链接的文章对此进行了详细介绍)。您还应该阅读UI 指南。
See the Supporting Multiple Screens article. Basically, you will do one of the following for each of your graphics:
ldpi
,mdpi
andhdpi
versions of it (this is detailed in the article linked above).You should also read the UI Guidelines.