中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何拿到文本框文字的宽度数值
微信扫码分享
主要使用measureText计算
import { MeasureText } from '@kit.ArkUI'; @Entry @Component struct Index { @State message: string = 'Hello World' @State textWidth: number = MeasureText.measureText({ textContent: "Hello word", fontSize: '50px' }) build() { Row() { Column() { Text("The width of 'Hello World': " + this.textWidth) } .width('100%') } .height('100%') } }
主要使用measureText计算