Android 上的 Titanium 移动方向
如何使用 Titanium Studio 将 Android 设备上的屏幕方向设置为仅纵向?
How do I set the screen orientation to portrait only on Android device using Titanium Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
KitchenSink 中有一个示例项目;电话->方向-> “仅允许横向”
There is an example project in the KitchenSink; Phone -> Orientation -> "Allow Landscape Only"
这适用于 SDK 1.8.2:
在项目目录中创建目录
platform/android/
。在 build/android/ 中找到 AndroidManifest.xml,复制并保存到platform/android/
中。编辑 platform/android/AndroidManifest.xml 并替换 'android:configChanges' 属性的所有值
到:
并在所有“activity”标签中添加“android:screenOrientation”属性。
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 inplatform/android/
.Edit platform/android/AndroidManifest.xml and replace all values of 'android:configChanges' attribute
to :
and add 'android:screenOrientation' attribute in all 'activity' tags.