作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 RNN2,我需要将 Android 上的方向锁定为纵向。通常在传统的 android 应用程序中,它是通过 manifest.xml 中的 android:screenOrientation = "portrait"完成的,但是当我使用 RNN2 设置屏幕时,它不起作用。
任何帮助将不胜感激。
最佳答案
我完成这项工作的唯一方法是将以下代码添加到 options
每个屏幕组件。尽管这些类型允许在堆栈和底部选项卡上指定布局,但它似乎只适用于组件本身的选项。至少在我尝试过的 2.19 和 2.23 上。
export class MyScreen extends Component<Props, State> {
static options = (): Options => ({
topBar: {
visible: false,
drawBehind: true,
},
statusBar: {
style: 'light',
},
layout: {
orientation: ['portrait'],
},
})
Navigation.setDefaultOptions({
layout: { orientation: ['portrait'] },
})
关于react-native-navigation-v2 - Wix React Native Navigation V2,如何在Android上锁定方向肖像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53971835/
我是一名优秀的程序员,十分优秀!