我的“天真”应用程序在我在模拟器上测试过的大多数android设备(和iOS)上看起来都很好,但是有些设备的屏幕顶部明显弯曲(Google Pixel 4,API 29),顶部显示了一个大的空白区域手机。
这看起来不正常。您知道如何解决它吗?
我正在使用SafeAreaView
,但没有任何Android特定的填充/边距。
<SafeAreaView style={{flex:1}}>
... My App Code come here.
</SafeAreaView>
我还试图删除SafeAreaView并改用常规View,但是它仍然不会消失。
仅出于测试目的,我删除了所有内容并添加了一个hello world测试屏幕。 它仍然给出相同的宽空白空间。 现在这是我的整个应用程序:
export default class Main extends React.Component {
constructor(props) {
super (props);
}
render () {
return (
<View style={{flex:1, backgroundColor: 'white'}}>
<Text> Hello World, How to fix this ? </Text>
</View>
);
}
}
AppRegistry.registerComponent(appName, () => Main);
答案 0 :(得分:2)
答案 1 :(得分:0)
检查状态栏组件,您可以在其中使用名为translucent
的属性在状态栏下绘制应用程序。 Reference link
答案 2 :(得分:0)
您只需隐藏您的 StatusBar
即可实现此目的,
import React from "react";
import { StatusBar, View, Text } from "react-native";
export default class Main extends React.Component {
constructor(props) {
super(props);
}
componentDidMount() {
StatusBar.setHidden(true);
}
render() {
return (
<View style={{ flex: 1, backgroundColor: 'white' }}>
<Text> Hello World, How to fix this ? </Text>
</View>
);
}
}
更新:将StatusBar
的{{1}}属性设置为true,并将其背景设置为transluent
,如下所示:
transparent
答案 3 :(得分:0)
您尝试过使用这种方式
<StatusBar translucent={true} hidden={true} /> {/* <--- Here */}