BooleanConfiguration

通过判断用户当前在表盘选项屏幕中的选择是 true 还是 false,有选择地显示一组文本和图形元素。此元素会引用表盘文件中其他位置定义的用户配置 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。这是一个字符串,必须与之前定义的用户配置 BooleanConfigurationid 值匹配。

内部元素

BooleanConfiguration 元素最多可包含两个 BooleanOption 内部元素。每个 BooleanOption 包含一个 id 值(TRUEFALSE),并包含当用户在表盘的选项屏幕中选择“true”或“false”时,应分别在表盘上显示的图形元素。

每个 BooleanOption 内部元素可包含以下元素之一: