HarmonOS app开发-------- Text 标签属性的学习

97 阅读1分钟

Text 标签属性的学习

Text是用于显示文本的View 项目中是肯定需要用到的,记录一下Text相关的一些属性

参考:blog.csdn.net/Forever_wj/…

MUZI只是记录自己常用的属性

属性名称描述使用案例
text文本显示ohos:text="熄屏时间" ohos:text="$string:test_str"
hint文本提示ohos:hint="联系人" ohos:hint="$string:test_str"
text_font可以设置的字体如表中所列ohos:text_font="HwChinese-medium"
truncation_mode长文本截断方式ohos:truncation_mode="ellipsis_at_middle"
text_size文本大小ohos:text_size="30" ohos:text_size="16fp" ohos:text_size="$float:size_value"
element_padding文本与图片的边距ohos:element_padding="20" ohos:element_padding="8vp" ohos:element_padding="$float:size_value"
bubble_width文本气泡宽度ohos:bubble_width="20" ohos:bubble_width="10vp" ohos:bubble_width="$float:size_value"
bubble_height文本气泡高度ohos:bubble_height="20" ohos:bubble_height="10vp" ohos:bubble_height="$float:size_value"
bubble_left_width文本气泡左宽度ohos:bubble_left_width="20" ohos:bubble_left_width="10vp" ohos:bubble_left_width="$float:size_value"
bubble_left_height文本气泡左高度ohos:bubble_left_height="20" ohos:bubble_left_height="10vp" ohos:bubble_left_height="$float:size_value"
bubble_right_width文本气泡右宽度ohos:bubble_right_width="20" ohos:bubble_right_width="10vp" ohos:bubble_right_width="$float:size_value"
bubble_right_height文本气泡右高度ohos:bubble_right_height="20" ohos:bubble_right_height="10vp" ohos:bubble_right_height="$float:size_value"
selection_color选中文本颜色ohos:selection_color="#A8FFFFFF" ohos:selection_color="$color:black"
max_text_lines文本最大行数ohos:max_text_lines="2" ohos:max_text_lines="$integer:two"
text_alignment文本的对齐方式可以设置取值项如表中所列,也可以使用“”进行多项组合。 ohos:text_alignment="top" ohos:text_alignment="topleft"
text_input_type文本输入类型
auto_scrolling_duration自动滚动时长
multiple_lines多行模式设置
auto_font_size是否支持文本自动调整文本字体大小
scrollable文本是否可滚动
text_cursor_visible文本光标是否可见。只有在可编辑的组件上可配置,否则该值始终为false
padding_for_text设置文本顶部与底部是否默认留白。默认值为true,true表示保留默认留白,false表示顶部与底部不留白
additional_line_spacing需增加的行间距
line_height_num行间距倍数
element_left文本左侧图标element_left、element_top、element_right、element_bottom
element_cursor_bubble文本的光标气泡图形,只有在可编辑的组件上可配置ohos:element_cursor_bubble="#FFFFFFFF" ohos:element_cursor_bubble="color:black"ohos:elementcursorbubble="color:black" ohos:element_cursor_bubble="media:media_src" ohos:element_cursor_bubble="$graphic:graphic_src"
element_selection_left_bubble选中文本的左侧气泡图形
element_selection_right_bubble选中文本的右侧气泡图形

显示

image.png