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.
我的应用程序必须仅支持平板电脑的横向/纵向模式,手机仅支持纵向模式。实现这一点的最佳方法是什么?
我正在考虑的选项:
a) 使用两个 apk 文件,一个用于手机,一个用于平板电脑。用于手机的将在清单中锁定横向模式
2)使用一个apk文件。检测到该设备是手机,在每个活动中锁定横向模式。
任何建议将被认真考虑。
问候
您可以将 SuperClass 用于活动并在例如 onCreate() 上实现此https://stackoverflow.com/a/9629127/710162 。