ImageSpan
[Text]組件的子組件,用于顯示行內(nèi)圖片。
說明:
開發(fā)前請熟悉鴻蒙開發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
該組件從API Version 10開始支持。后續(xù)版本如有新增內(nèi)容,則采用上角標(biāo)單獨標(biāo)記該內(nèi)容的起始版本。
子組件
無
接口
ImageSpan(value: ResourceStr | PixelMap)
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
value | [ResourceStr] | [PixelMap] | 是 |
屬性
[通用屬性]方法支持尺寸設(shè)置、背景設(shè)置、邊框設(shè)置。
名稱 | 參數(shù)類型 | 描述 |
---|---|---|
verticalAlign | [ImageSpanAlignment] | 圖片基于文本的對齊方式。 默認(rèn)值:ImageSpanAlignment.BOTTOM |
objectFit | [ImageFit] | 設(shè)置圖片的縮放類型。 默認(rèn)值:ImageFit.Cover |
ImageSpanAlignment
名稱 | 描述 |
---|---|
TOP | 圖片上邊沿與文本上邊沿對齊。 |
CENTER | 圖片中間與文本中間對齊。 |
BOTTOM | 圖片下邊沿與文本下邊沿對齊。 |
BASELINE | 圖片下邊沿與文本BaseLine對齊。HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
事件
通用事件僅支持[點擊事件]。
示例
// xxx.ets
@Entry
@Component
struct SpanExample {
build() {
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start}) {
Text() {
Span('This is the Span and ImageSpan component').fontSize(25).textCase(TextCase.Normal)
.decoration({ type: TextDecorationType.None, color: Color.Pink })
}.width('100%').textAlign(TextAlign.Center)
Text() {
ImageSpan($r('app.media.icon'))
.width('200px')
.height('200px')
.objectFit(ImageFit.Fill)
.verticalAlign(ImageSpanAlignment.CENTER)
Span('I am LineThrough-span')
.decoration({ type: TextDecorationType.LineThrough, color: Color.Red }).fontSize(25)
ImageSpan($r('app.media.icon'))
.width('50px')
.height('50px')
.verticalAlign(ImageSpanAlignment.TOP)
Span('I am Underline-span')
.decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(25)
ImageSpan($r('app.media.icon'))
.size({width:'100px', height:'100px'})
.verticalAlign(ImageSpanAlignment.BASELINE)
Span('I am Underline-span')
.decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(25)
ImageSpan($r('app.media.icon'))
.width('70px')
.height('70px')
.verticalAlign(ImageSpanAlignment.BOTTOM)
Span('I am Underline-span')
.decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(50)
}
.width('100%')
.textIndent(50)
}.width('100%').height('100%').padding({ left: 0, right: 0, top: 0 })
}
}
審核編輯 黃宇
-
組件
+關(guān)注
關(guān)注
1文章
504瀏覽量
17787 -
鴻蒙
+關(guān)注
關(guān)注
57文章
2305瀏覽量
42697
發(fā)布評論請先 登錄
相關(guān)推薦
評論