Android 上的 Titanium 移动方向

发布于 2024-11-25 19:47:53 字数 53 浏览 1 评论 0原文

如何使用 Titanium Studio 将 Android 设备上的屏幕方向设置为仅纵向?

How do I set the screen orientation to portrait only on Android device using Titanium Studio?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人的旅程 2024-12-02 19:47:53

KitchenSink 中有一个示例项目;电话->方向-> “仅允许横向”

There is an example project in the KitchenSink; Phone -> Orientation -> "Allow Landscape Only"

⒈起吃苦の倖褔 2024-12-02 19:47:53

这适用于 SDK 1.8.2:

在项目目录中创建目录 platform/android/。在 build/android/ 中找到 AndroidManifest.xml,复制并保存到 platform/android/ 中。

编辑 platform/android/AndroidManifest.xml 并替换 'android:configChanges' 属性的所有值
到:

android:configChanges="keyboardHidden"

并在所有“activity”标签中添加“android:screenOrientation”属性。

android:screenOrientation="portrait"

This works with SDK 1.8.2:

Create directory platform/android/ in your project directory. Find AndroidManifest.xml in build/android/ , copy and save it in platform/android/.

Edit platform/android/AndroidManifest.xml and replace all values of 'android:configChanges' attribute
to :

android:configChanges="keyboardHidden"

and add 'android:screenOrientation' attribute in all 'activity' tags.

android:screenOrientation="portrait"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文