我应该分别为平板电脑和手机制作应用程序吗?
我目前正在开发一个适用于手机和平板电脑的 Android 应用程序。我需要知道是否应该为手机和平板电脑制作一个单独的应用程序。有没有办法为两者制作一个应用程序?
谢谢
I am currently developing an android app for phones and for tablets.I need to know whether i should make a separate app for a phone and a tablet.Is there anyway of making a single app for both?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该为平板电脑和手机创建一个应用程序,除非您有非常紧迫的理由不这样做。
从1.5/1.6开始,Android提供了资源来管理几种不同的屏幕尺寸。所有编程逻辑都应该不受屏幕尺寸的影响。一切都应该在布局文件中定义。
也就是说,如果您正在编写一款手机和平板电脑行为截然不同的 openGL 游戏,您可能需要考虑它。否则,请坚持使用一个应用程序。
You should create a single app for tablet and phone unless you have a very pressing reason not to.
Since 1.5/1.6, Android has given resources to manage several different screen sizes. All programming logic should be unaffected by the size of the screen. Everything should be defined in layout files.
That said, if you're programming an openGL game with drastically different phone and tablet behavior, you may want to consider it. Otherwise, stick with one app.