仅适用于平板电脑的横向模式
我的应用程序必须仅支持平板电脑的横向/纵向模式,手机仅支持纵向模式。实现这一点的最佳方法是什么?
我正在考虑的选项:
a)使用两个 apk 文件,一个用于手机,一个用于平板电脑。手机版将
使用一个 apk 文件在清单 2) 中锁定横向模式。检测到该设备是手机,在每个活动中锁定横向模式。
任何建议将不胜感激。
问候
My app has to support landscape/portrait mode only for tablets, phones will only support portrait mode. What is the best way to implement this?
Options that I am considering:
a) using two apk files, one for phones and one for tablets. The one for phone will lock landscape mode in the manifest
2) using one apk file. Detect that device is a phone, lock landscape mode inside each activity.
any advice will be appreciated.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将超类用于活动并实现此https://stackoverflow.com/a/9629127/710162,用于例如,onCreate()。
You can use a SuperClass for activities and implement this https://stackoverflow.com/a/9629127/710162 on, for example, onCreate().