Android 市场通用应用程序(平板电脑和手机)
我正在尝试找到一种方法,通过 Android 市场上的一个应用程序同时支持手机屏幕(小、正常、大)和平板电脑屏幕(超大)。
我发现的最常见的答案是:在 androidManifest 中启用 xlarge 屏幕,但将 minSdkTarget 更改为 9。我希望支持 sdkTarget 4 及更高版本的手机。是否可以在一个应用程序中完成这一切?
稍微扩展一下问题,请求电话和短信等权限是否会阻止应用程序安装在没有这些功能的平板电脑上?
非常感谢您的帮助,-Rob
I'm trying to find a way to support both phone screens (small, normal, large) and tablet screens (xlarge) with one app on the Android market.
The most common answer I have found is: enable xlarge screens in in the androidManifest, but change minSdkTarget to 9. I'm hoping to support phones with sdkTarget 4 and above. Is it possible to do this all in one app?
To expand the question just slightly, will requesting permissions such as TELEPHONY and SMS prevent the app from being installed on a tablet without those capabilities?
Thanks very much for the help, -Rob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要进行多种布局设置;每个目标屏幕尺寸都有一个。 请参阅文档以获取更多信息。
You will need to have mutliple layout set ups; one for each of the target screen sizes. Refer to the docs to get more info on it.