HarmonyOS TextInput如何监听键盘的删除操作 ?

HarmonyOS TextInput如何监听键盘的删除操作?

HarmonyOS
2024-10-18 09:34:27
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

关于使用输入框焦点的前移可以参考demo:

//验证码输入框  
interface codeOne {  
  str: string ,  
  isBorder: boolean  
}  
@Entry  
@Component  
export struct TextInputCodeView {  
  // 验证码  
  @State code: string = ''  
  // 验证码位数  
  @Prop  
  someArrayLength: number = 4  
  someArray: number[] = []  
  aboutToAppear(): void {  
    this.someArray = Array.from({length: this.someArrayLength})  
  }  
  build() {  
    Stack() {  
      Row() {  
        ForEach(this.someArray, (item: number,index:number) => {  
          //加间隙  
          if (index != 0) {  
            Blank()  
          }  
          //index + 1 :表示输入框的位置。  
          //填写验证码  
          if (this.code.length >= index + 1 ) {  
            this.OneText({ str:this.code.substring(index, index + 1),  isBorder: index + 1 === this.someArray.length})  
          } else {  
            //没有验证码  
            this.OneText({  
              str:'',  
              isBorder: this.code.length + 1 === index + 1  
            })  
          }  
        }, (item: number ,index: number) => JSON.stringify(index + 1))    //键值标识  
      }  
      .width('100%')  
      TextInput({ placeholder: "" })  
        .width('100%')  
        .height('100%')  
        .maxLength(this.someArray.length)  
        .caretColor(Color.Transparent)  
        .fontColor(Color.Transparent)  
        .borderColor(Color.Transparent)  
        .backgroundColor(Color.Transparent)  
        .onChange((value: string) => {  
          this.code = value  
        })  
        .onSubmit(async () => {  
          //回车事件  
        })  
    }  
    .width('100%')  
    .height(60)  
  }  
  //参数:验证码内容,是否显示边框  
  @Builder OneText(item:codeOne) {  
    //判断,是否选中当前的输入框,是否有内容 。是当前选中的,没有内容,显示 |  
    Text(item.isBorder && !item.str ? '|' : item.str as string)  
      .width(50)  
      .height(50)  
      .textAlign(TextAlign.Center)  
      .fontSize(20)  
      .fontColor(item.isBorder && !item.str ?'#ffdd4f46' : Color.Black)  
      .backgroundColor('#f3f4f6')  
      .borderRadius(8)  
  }  
}
分享
微博
QQ
微信
回复
2024-10-18 14:07:44
相关问题
HarmonyOS TextInput如何主动弹出键盘
233浏览 • 1回复 待解决
HarmonyOS 如何监听键盘弹出收回?
256浏览 • 1回复 待解决
HarmonyOS TextInput调用系统键盘问题
178浏览 • 1回复 待解决
HarmonyOS TextInput键盘相关问题咨询
435浏览 • 1回复 待解决
HarmonyOS 键盘事件监听问题
445浏览 • 1回复 待解决
如何监听TextInput是否获得焦点
1779浏览 • 1回复 待解决
HarmonyOS TextInput自定义键盘
280浏览 • 1回复 待解决
HarmonyOS TextInput自定义键盘问题
424浏览 • 1回复 待解决
cookie读、写和删除操作
212浏览 • 1回复 待解决
HarmonyOS TextInput绑定自定义键盘问题
422浏览 • 1回复 待解决
怎么监听键盘弹起和关闭事件?
2676浏览 • 1回复 待解决