设备应用 APIUIgetRtlLayout版本:v3On this pagegetRtlLayout() API_LEVEL 2.0 开始支持,API 兼容性请参考 API_LEVEL。 查询当前系统语言设置是否为 RTL 语言,语言设置为希伯来语和阿拉伯语会返回 true。 类型 () => result result: boolean 说明类型查询结果,true 表明为 RTL 语言,false 表明非 RTL 语言boolean 代码示例 import { getRtlLayout } from '@zos/ui'const result = getRtlLayout()console.log(result)