पार्टटेक्स्ट

यह स्मार्टवॉच की होम स्क्रीन के उस हिस्से के बारे में बताता है जिसमें सिर्फ़ एक टेक्स्ट लेआउट होता है एलिमेंट.

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
दो-डाइमेंशन वाला पिवट पॉइंट, जिससे एलिमेंट घूमता है. दोनों वैल्यू फ़्लोट करने वाले पॉइंट हैं, जिन्हें $ [0, 1] $ की रेंज में फ़िट करने के लिए स्केल किया गया है.
angle
एलिमेंट को घड़ी की सुई की दिशा में कितने डिग्री पर घुमाना चाहिए पिवट पॉइंट.
alpha
इस एलिमेंट में मौजूद पारदर्शिता का लेवल सेट करें. 0 की वैल्यू यह बताता है कि एलिमेंट पूरी तरह से पारदर्शी होना चाहिए. 255 की वैल्यू इससे पता चलता है कि एलिमेंट पूरी तरह से ओपेक होना चाहिए.
name
इस एलिमेंट की पहचान करने वाली स्ट्रिंग. यह तब काम आता है, जब आपको इसके बारे में जानना हो एलिमेंट दिख सकता है.
scaleX
इस एलिमेंट पर लागू किया जाने वाला हॉरिज़ॉन्टल स्केलिंग फ़ैक्टर.
scaleY
इस एलिमेंट पर लागू किया जाने वाला वर्टिकल स्केलिंग फ़ैक्टर.
renderMode
एलिमेंट के रेंडर मोड का टाइप. संभावित वैल्यू ये हैं: SOURCE (डिफ़ॉल्ट), MASK या ALL.
tintColor
एलिमेंट पर टिंट कलर फ़िल्टर लागू करें. आपको इसका उपयोग करके रंग तय करना होगा ARGB फ़ॉर्मैट (#ff000000 = ओपेक काला) या आरजीबी फ़ॉर्मैट (#000000 = काला).

इनर एलिमेंट

PartText एलिमेंट में ये अंदरूनी एलिमेंट शामिल हो सकते हैं. सभी एलिमेंट वैकल्पिक हैं, लेकिन Text या TextCircular में से एक अंदरूनी एलिमेंट. एक PartText एलिमेंट में इनर एलिमेंट -- Text, TextCircular, Localization, Gyro को छोड़कर, Launch और ScreenReader, दोनों में से हर एक को ज़्यादा से ज़्यादा 1 बार दिख सकता है.