您的位置:首页 > 房产 > 家装 > HarmonyOS【ArkUI组件--Text】

HarmonyOS【ArkUI组件--Text】

2025/1/9 4:19:06 来源:https://blog.csdn.net/m0_62388400/article/details/139725468  浏览:    关键词:HarmonyOS【ArkUI组件--Text】

1.Text文本显示组件

2.编写代码

在上一篇博客的基础上继续

 HarmonyOS【ArkUI组件---Image组件】-CSDN博客

 ①新建ImagePage.ets

② 设置文本串

(1)base中的string.json

 {"name": "width_label","value": "Image Width:"}

(2) en_US中的string.json

 {"name": "width_label","value": "Image Width:"}

(3)zh_CN中的string.json

{"name": "width_label","value": "图片宽度:"}

③ImagePage 代码

import font from '@ohos.font'
@Entry
@Component
struct Index {@State message: string = 'Hello World'build() {Row() {Column() {Image($r('app.media.app_icon')).width(250).interpolation(ImageInterpolation.High)Text($r('app.string.width_label')).fontSize(20).fontWeight(FontWeight.Bold)}.width('100%')}.height('100%')}
}

④效果如下

 

 

 

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com