# getStatusBar ^7.10

获取状态栏信息

# 请求参数

N/A

# 接口调用示例

this.$bridge
  .getStatusBar()
  .then((res) => {
    this.$alert(res);
  })
  .catch((err) => {
    this.$toast(err);
  });
1
2
3
4
5
6
7
8

# 返回参数

Prop Type Required Default Comment
isDisplay Boolean Y N/A 状态栏显示状态。0:不显示,1:显示
height Boolean Y N/A 状态栏高度,安卓单位 dp,iOS 单位 pt,用于适配状态栏

# 接口返回示例

{
  isDisplay: 0,
  height: 20
}
1
2
3
4
更新时间: 10/27/2022, 2:33:23 PM