HarmonyOS 虚线下划线的实现方式

是否支持自定义下划线的样式,比如使用虚线的下划线

HarmonyOS
17h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

虚线下划线可以用canvas自定义一个组件实现,demo如下:

@Entry
@Component
struct CanvasExample {
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)

  /*
  * text: 绘制的文本内容
  * x: 开始位置的x坐标
  * y: 开始位置的y坐标
  * maxWidth: 最大换行宽度
  * lineHeight: 行高
  */
  wrapText(text: string, x: number, y: number, maxWidth?: number, lineHeight?: number) {
    if (typeof maxWidth == 'undefined') {
      maxWidth = 300;
    }
    if (typeof lineHeight == 'undefined') {
      lineHeight = 20
    }
    let arrText = text.split(''); // 字符分隔为数组
    let line = '';
    for (let n = 0; n < arrText.length; n++) {
      let testLine = line + arrText[n];
      let metrics = this.context.measureText(testLine);
      let testWidth = metrics.width;
      if (testWidth > maxWidth && n > 0) {
        this.context.fillText(line, x, y);
        this.context.beginPath();
        this.context.moveTo(x, y + 10);
        this.context.lineTo(maxWidth, y + 10);
        this.context.stroke();
        this.context.closePath();
        line = arrText[n];
        y += lineHeight;
      } else {
        line = testLine;
      }
    }
    this.context.fillText(line, x, y);
    this.context.beginPath();
    this.context.moveTo(x, y + 10);
    this.context.lineTo(maxWidth, y + 10);
    this.context.stroke();
    this.context.closePath();
  }
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context).width('100%').height('100%')
        .backgroundColor('#ffff00')
        .onReady(() => {
          this.context.lineWidth = 2 // 设置线条宽度
          this.context.strokeStyle = "red" // 设置线条颜色
          this.context.setLineDash([10, 3]) // 设置虚线间隔
          this.context.font = "45px"
          this.wrapText("我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行,我要换行我要换行", 0, 40, this.context.width, 30)
        })
    }.width('100%').height('100%')
  }
}
分享
微博
QQ
微信
回复
15h前
相关问题
如何给文字添加下划线?
658浏览 • 1回复 待解决
tab-bar下方下划线怎么去掉?
3203浏览 • 1回复 待解决
Tabs组件选中下划线需要平移动效
1744浏览 • 1回复 待解决
希望提供字体是否为下划线文本接口
863浏览 • 1回复 待解决
HarmonyOS 如何实现虚线
731浏览 • 1回复 待解决
HarmonyOS 虚线功能实现
60浏览 • 1回复 待解决
实现一个虚线边框组件。
605浏览 • 1回复 待解决
给文本添加上划线如何实现
419浏览 • 1回复 待解决
鸿蒙线下门店都分布在哪些地方?
5028浏览 • 1回复 待解决
HarmonyOS 路径规划无划线
477浏览 • 1回复 待解决
Divider组件是否存在虚线属性
724浏览 • 1回复 待解决
HarmonyOS 应用灰度设置实现方式
528浏览 • 1回复 待解决
HarmonyOS ArkTS 关于重载实现方式
73浏览 • 1回复 待解决
HarmonyOS 如何使用canvas绘制虚线
41浏览 • 1回复 待解决