HarmonyOS 如何改变光标位置

HarmonyOS  如何改变光标位置。

HarmonyOS
2024-09-24 12:08:29
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

示例如下:

// xxx.ets  
@Entry  
@Component  
struct TextInputExample {  
  controller: TextInputController = new TextInputController()  
  @State inputValue: string = ""  
  
  // 自定义键盘组件  
  @Builder CustomKeyboardBuilder() {  
    Column() {  
      Row(){  
        Button('x').onClick(() => {  
          // 关闭自定义键盘  
          this.controller.stopEditing()  
        })  
        Button('光标').onClick(() => {  
          // 关闭自定义键盘  
          this.controller.caretPosition(2)  
        })  
      }  
      Grid() {  
        ForEach([1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#'], (item:number|string) => {  
          GridItem() {  
            Button(item + "")  
              .width(110).onClick(() => {  
              this.inputValue += item  
            })  
          }  
        })  
      }.maxCount(3).columnsGap(10).rowsGap(10).padding(5)  
    }.backgroundColor(Color.Gray)  
  }  
  
  build() {  
    Column() {  
      TextInput({ controller: this.controller, text: this.inputValue })  
        // 绑定自定义键盘  
        .customKeyboard(this.CustomKeyboardBuilder()).margin(10).border({ width: 1 }).height('48vp')  
    }  
  }  
}
分享
微博
QQ
微信
回复
2024-09-24 15:58:27
相关问题
设置TextInput组件光标位置在起点
402浏览 • 1回复 待解决
基于自定义键盘设置光标位置
372浏览 • 1回复 待解决
HarmonyOS如何动态改变图标
386浏览 • 1回复 待解决
HarmonyOS 如何实现拖动改变ListItem顺序
250浏览 • 1回复 待解决
HarmonyOS 如何获取组件的位置
168浏览 • 1回复 待解决
TextInput在聚焦时如何使光标回到起点
1763浏览 • 1回复 待解决
TextInput在聚焦时如何光标回到起点
2190浏览 • 3回复 待解决
HarmonyOS使用Web组件如何监听滚动位置
455浏览 • 2回复 待解决
小程序输入法键盘光标问题
210浏览 • 1回复 待解决
HarmonyOS CustomDialog位置问题
228浏览 • 1回复 待解决