From 4e373d6c53349bdcaa8059bb897ec4efd393d590 Mon Sep 17 00:00:00 2001 From: iPel Date: Wed, 11 Oct 2023 21:16:43 +0800 Subject: [PATCH] chore(doc): update dimensions api notes --- docs/api/hippy-react/modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/hippy-react/modules.md b/docs/api/hippy-react/modules.md index 1c26bfff211..256a8e274dd 100644 --- a/docs/api/hippy-react/modules.md +++ b/docs/api/hippy-react/modules.md @@ -256,7 +256,7 @@ AsyncStorage 是一个简单的、异步的、持久化的 Key-Value 存储系 `(target: 'window' | 'screen') => { height: number, width: number, scale: number, statusBarHeight, navigatorBarHeight }` Hippy Root View 尺寸或者屏幕尺寸。 > - target: 'window' | 'screen' - 指定丈量 Hippy Root View 或者屏幕尺寸。 -> - Android 特别说明:因为历史遗留问题,screen 下的 statusBarHeight 是按实际像素算的,window 下经过修正已经是 dp 单位。 +> - Android 特别说明:因为历史遗留问题,2.x 及以下版本的 screen 下的 statusBarHeight 是按物理像素算的,window 下经过修正已经是 dp 单位;3.0 及以上版本 screen 和 window 均为 dp 单位。 > - navigatorBarHeight: Android 底部 navigatorBar 高度;最低支持版本 2.3.4 ---