<ui>
<linear gravity="center" h="max" padding="30" w="max">
<text gravity="center" run="true" selectable="true"
text="不丹风景如画,喜马拉雅群峰巍峨,山谷间古寺林立,森林葱郁,河流奔腾,田园村庄点缀其中,宛如世外桃源。" />
</linear>
</ui>

<ui>
<linear gravity="center" h="max" padding="30" w="max">
<text gravity="center" size="12" text="文字" />
<text gravity="center" size="14" text="文字" />
<text gravity="center" size="16" text="文字" />
</linear>
</ui>

- 使用 color="#xxxxxx" 设置字体颜色
<ui>
<linear gravity="center" h="max" padding="30" w="max">
<text gravity="center" color="#57965C" text="文字颜色" />
<text gravity="center" color="#C94F4F" text="文字颜色" />
<text gravity="center" color="#3574F0" text="文字颜色" />
</linear>
</ui>

<ui>
<linear gravity="center" h="max" padding="30" w="max">
<text gravity="center" typeface="sans" text="文字字体:sans" />
<text gravity="center" typeface="serif" text="文字字体:serif" />
<text gravity="center" typeface="mono" text="文字字体:mono" />
<text gravity="center" typeface="default" text="文字字体:default" />
<text gravity="center" typeface="bold" text="文字字体:bold" />
<text gravity="center" typeface="italic" text="文字字体:italic" />
<text gravity="center" typeface="boldItalic" text="文字字体:boldItalic" />
</linear>
</ui>

- 使用 selectable="true" 设置支持选择
<ui>
<linear gravity="center" h="max" padding="30" w="max">
<text gravity="center" selectable="true" text="在喜马拉雅山脉的东段南麓,隐匿着一个如诗如画的国度 —— 不丹,它宛如一颗未经雕琢的璞玉,散发着独特而迷人的魅力。" />
</linear>
</ui>
