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.
使用phone-gap-build将 HTML5 转换为 apk 后。
当我更改移动设备的方向时,应用程序不会更改方向,但在转换 web 应用程序之前会更改方向(屏幕视图不会水平)。
我需要什么来触发定向?
检查你的 phonegap-build 配置文件,
<preference name="orientation" value="把默认值放在这里" />
<preference name="orientation" value="
" />
具有可能值的方向默认、横向或纵向示例:<preference name="orientation" value="landscape" /> 请注意,默认意味着横向和纵向都已启用。如果您想使用每个平台的默认设置(通常仅纵向),只需从您的 config.xml 中删除此标记
<preference name="orientation" value="landscape" />
来源:config.xml 文档