HarmonyOS GridItem里面的组件Text无法改变文字颜色

在自定义安全键盘的时候,GridItem里的text按压时无法改变文字颜色。给text添加onTouch事件,去监听down,改变变量item入参也无法反应到ui上。

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

当前监听不到item.isPress的变化,可以尝试以下方式,参考示例如下:

import { EKeyType, EKeyboardType, IKeyAttribute } from '../model/Constants';

@Component
export struct CustomKeyboard {
  @Prop items: IKeyAttribute[];
  @Prop curKeyboardType: EKeyboardType;
  @Link inputValue: string;
  private controller: TextInputController = new TextInputController();
  private onKeyboardEvent: Function | null = null;
  private rowSpace: number = 5; // 行间距
  private rowCount: number = 4; // 行数
  private columnSpace: number = 5; // 列间距
  private itemHeight: number = 42; // Item尺寸
  @State activeItem: string = '' // 定义一个变量来接收当前按压键

  @Builder
  myGridItem(item: IKeyAttribute, id: string) {
    Column() {
      if (typeof item.label === 'object') {
        Image(item.label)
          .width($r("app.integer.customsafekeyboard_key_image_size"))
          .height($r("app.integer.customsafekeyboard_key_image_size"))
          .objectFit(ImageFit.Contain)
      } else {
        Text(item.label)
          .fontSize(item.fontSize)
          .fontColor(this.activeItem === id ? Color.Yellow : Color.White)// 判断当前键是否是按压键,调整颜色状态
          .fontWeight(FontWeight.Bold)
      }
    }
    .width('100%')
    .height('100%')
    .onTouch((event: TouchEvent) => {
      if (event.type == TouchType.Down) {
        this.activeItem = id
      } else if (event.type == TouchType.Up) {
        this.activeItem = ''
      }
      console.log('active:::' + this.activeItem)
    })
    .justifyContent(FlexAlign.Center)

  }

  @Builder
  titleBar() {
    Stack() {
      Text($r("app.string.customsafekeyboard_keyboard_title"))
        .fontSize($r("app.integer.customsafekeyboard_keyboard_title_font_size"))
        .fontColor(Color.Grey)

      Row() {
        Text($r("app.string.customsafekeyboard_keyboard_submit"))
          .fontSize($r("app.integer.customsafekeyboard_keyboard_title_font_size"))
          .fontColor(Color.Blue)
          .onClick(() => {
            this.controller.stopEditing();
          })
      }
      .width($r("app.string.customsafekeyboard_one_hundred_percent"))
      .justifyContent(FlexAlign.End)
    }
    .width($r("app.string.customsafekeyboard_one_hundred_percent"))
    .margin({
      top: $r("app.integer.customsafekeyboard_keyboard_title_margin_top"),
      bottom: $r("app.integer.customsafekeyboard_keyboard_title_margin_bottom")
    })
  }

  build() {
    Column() {
      this.titleBar();

      Grid() {
        // 性能知识点:此处数据项较少,一屏内可以展示所有数据项,使用了ForEach。在数据项多的列表git滚动场景下,推荐使用LazyForEach。
        ForEach(this.items, (item: IKeyAttribute, index: number) => {
          GridItem() {
            this.myGridItem(item, 'key' + index)
          }
          .width($r("app.string.customsafekeyboard_one_hundred_percent"))
          .height(this.itemHeight)
          .rowStart(item?.position?.[0])
          .columnEnd(item?.position?.[1])
          .columnStart(item?.position?.[2])
          .columnEnd(item?.position?.[3])
          .backgroundColor(item.backgroundColor)
          .borderRadius($r("app.integer.customsafekeyboard_keyboard_radius"))
          .onClick(() => {
            this.onKeyboardEvent?.(item);
            if (item.type === EKeyType.CAPSLOCK && typeof item.label === 'object') {
              if (this.curKeyboardType === EKeyboardType.LOWERCASE) {
                item.label = $r("app.media.customsafekeyboard_capslock_white");
              } else {
                item.label = $r("app.media.customsafekeyboard_capslock_black");
              }
            }
          })
        }, (item: IKeyAttribute, index: number) => JSON.stringify(item) + index)
      }
      .margin({ bottom: $r("app.integer.customsafekeyboard_keyboard_marin_bottom") })
      .columnsTemplate(this.curKeyboardType === EKeyboardType.NUMERIC ? "1fr 1fr 1fr" :
        "1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr")
      .rowsTemplate("1fr 1fr 1fr 1fr") // Grid高度均分成4份
      .rowsGap(this.rowSpace) // 设置行间距
      .columnsGap(this.columnSpace) // 设置列间距
      .width($r("app.string.customsafekeyboard_one_hundred_percent"))
      .height(this.itemHeight * this.rowCount + this.rowSpace * (this.rowCount - 1))
    }
    .width($r("app.string.customsafekeyboard_one_hundred_percent"))
    .padding({ left: this.columnSpace, right: this.columnSpace })
    .backgroundColor(Color.Black)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
button 字体颜色无法改变
3771浏览 • 1回复 待解决
text怎么更改部分文字颜色
7222浏览 • 1回复 待解决
主工程要怎么使用module里面的颜色
215浏览 • 1回复 待解决
HarmonyOS Text组件如何设置文字方向
45浏览 • 1回复 待解决
怎么让text文本排在image里面的右下角
726浏览 • 1回复 待解决
HarmonyOS 图片颜色改变API
21浏览 • 1回复 待解决
HarmonyOS Text组件是否支持文字描边
35浏览 • 1回复 待解决
在XComponent组件中如何改变背景颜色
468浏览 • 1回复 待解决
哪个属性可以改变Text组件字体的粗细
1883浏览 • 1回复 待解决
HarmonyOS 如何改变图标icon颜色
33浏览 • 1回复 待解决
如何获取Text组件文字的宽度
2170浏览 • 1回复 待解决
HarmonyOS Text组件无法铺满屏幕
33浏览 • 1回复 待解决
文字背景颜色渐变显示
2198浏览 • 1回复 待解决