ข้อความบางส่วน

หมายถึงส่วนของหน้าปัดที่มีองค์ประกอบเลย์เอาต์ข้อความ 1 รายการเท่านั้น

เปิดตัวใน Wear OS 4

วากยสัมพันธ์

<PartText x="integer" y="integer" width="integer" height="integer"
           pivotX="float" pivotY="float" angle="float-degrees" alpha="integer"
           name="string" scaleX="float" scaleY="float"
           renderMode="[SOURCE | MASK | ALL]"
           tintColor="argb-color | rgb-color">
    <!-- Text-specific child elements. -->
    <Text>
        <!-- There must be raw text as the leaf inner element within a
            "PartText" element tree. -->
        <Font family="font" size="20" color="#00FFFF">Hello world
        </Font>
        <Font>
            <!-- Example of a text decoration element. -->
            <Outline>
                <!-- Example of a template with 2 string values. -->
                <Template>%s %s
                    <Parameter expression="[MONTH_S]" />
                    <Parameter expression="[DAY]" />
                </Template>
            </Outline>
            <!-- Example of a text formatting element. -->
            <Upper>
                <Template ... />
            </Upper>
            <Template ... />
        </Font>
    </Text>
    <!-- A "PartText" element can contain this "TextCircular" element instead
         of a "Text" element. -->
    <TextCircular centerX="180" centerY="180" direction="COUNTER_CLOCKWISE"
                  endAngle="90" height="340" width="340" startAngle="270">
        <!-- There must be raw text as the leaf inner element within a "PartText"
        element tree. -->
        <Font family="font" size="20" color="#00FFFF">Hello world
        </Font>
        <Font>
            Example of a text decoration element.
            <Outline>
                Example of a template with 2 string values.
                <Template>%s %s
                    <Parameter expression="[MONTH_S]" />
                    <Parameter expression="[DAY]" />
                </Template>
            </Outline>
            Example of a text formatting element.
            <Upper>
                <Template ... />
            </Upper>
            <Template ... />
        </Font>
    </TextCircular />
    -->

    <!-- Child elements that are shared across all "Part" elements. -->
    <Localization .../>
    <Transform .../>
    <Variant .../>
    <Gyro .../>
    <Launch .../>
    <ScreenReader .../>
</PartText>

แอตทริบิวต์

องค์ประกอบ PartText มีแอตทริบิวต์ต่อไปนี้

แอตทริบิวต์ที่จำเป็น

คุณต้องระบุแอตทริบิวต์ต่อไปนี้

x, y, width, height

คอลเล็กชันของจำนวนเต็มที่ระบุขนาดและตำแหน่งขององค์ประกอบ

แอตทริบิวต์เหล่านี้เปลี่ยนรูปแบบได้

แอตทริบิวต์ที่ไม่บังคับ

คุณจะใช้แอตทริบิวต์ต่อไปนี้หรือไม่ก็ได้

pivotX, pivotY

จุดหมุน 2 มิติที่องค์ประกอบหมุนรอบ ทั้ง 2 ค่าเป็นตัวเลขทศนิยมที่มีการปรับขนาดให้พอดีกับช่วง $ [0, 1] $

แอตทริบิวต์เหล่านี้เปลี่ยนรูปแบบได้

angle

จำนวนองศาตามเข็มนาฬิกาที่ควรหมุนองค์ประกอบรอบจุดหมุน

แอตทริบิวต์นี้เปลี่ยนรูปแบบได้

alpha

ตั้งค่าระดับความโปร่งใสที่องค์ประกอบนี้ควรมี ค่า 0บ่งบอกว่าองค์ประกอบควรมีความโปร่งใสทั้งหมด ค่า 255บ่งบอกว่าองค์ประกอบควรทึบแสงทั้งหมด

แอตทริบิวต์นี้เปลี่ยนรูปแบบได้

name

สตริงที่ระบุองค์ประกอบนี้ มีประโยชน์หากคุณต้องการอ้างอิงองค์ประกอบนี้ จากตำแหน่งอื่นภายในไฟล์หน้าปัด

scaleX

ค่าตัวคูณมาตราส่วนแนวนอนที่จะใช้กับองค์ประกอบนี้

แอตทริบิวต์นี้เปลี่ยนรูปแบบได้

scaleY

ค่าตัวคูณมาตราส่วนแนวตั้งที่จะนำไปใช้กับองค์ประกอบนี้

แอตทริบิวต์นี้เปลี่ยนรูปแบบได้

renderMode

ประเภทโหมดการแสดงผลขององค์ประกอบ ค่าที่เป็นไปได้ ได้แก่ SOURCE (ค่าเริ่มต้น), MASK หรือ ALL

tintColor

ใช้ฟิลเตอร์สีอ่อนกับองค์ประกอบ คุณต้องระบุสีโดยใช้รูปแบบ ARGB (#ff000000 = สีดำทึบแสง) หรือรูปแบบ RGB (#000000 = สีดำ)

องค์ประกอบภายใน

องค์ประกอบ PartText อาจมีองค์ประกอบภายในต่อไปนี้ องค์ประกอบทั้งหมดเป็นแบบไม่บังคับ ยกเว้น Text หรือ TextCircular จะต้องเป็นหนึ่งในองค์ประกอบภายใน องค์ประกอบ PartText จะมีองค์ประกอบภายในแต่ละรายการได้ไม่จำกัดจำนวน ยกเว้น Text, TextCircular, Localization, Gyro, Launch และ ScreenReader ซึ่งปรากฏได้สูงสุดรายการละ 1 ครั้ง