允许根据用户从表盘选项屏幕中当前的真/假选择有条件地显示一组文本和图形元素。此元素引用在表盘文件中其他位置定义的用户配置BooleanConfiguration
元素。
在 Wear OS 4 中推出。
语法
<!-- The ID doesn't need to be "showDate"; this is just an example. --> <UserConfiguration> <BooleanConfiguration id="showDate" /> </UserConfiguration> <!-- ... --> <BooleanConfiguration id="showDate"> <BooleanOption id="TRUE"> <!-- Only the most common element is shown here --> <PartText ... /> </BooleanOption> <BooleanOption id="FALSE" ... /> </BooleanConfiguration>
属性
BooleanConfiguration
元素有一个必填属性,id
。这是一个字符串,必须与之前定义的用户配置BooleanConfiguration
的id
值匹配。
内部元素
BooleanConfiguration
元素最多可以包含两个BooleanOption
内部元素。每个BooleanOption
包含一个id
值,值为TRUE
或FALSE
,并包含当用户分别从表盘选项屏幕中选择“true”或“false”时,应在表盘上显示的图形元素。
每个BooleanOption
内部元素可以包含以下元素之一