HarmonyOS TextInput如何通过代码获取焦点

如何实现在输入好手机号后点击回车(目前的表现是收起软键盘),跳转到下一个输入框继续输入。

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

参考以下示例:

import promptAction from '@ohos.promptAction';

@Entry
@Component
struct RequestFocusExample {
  @State selectId: string = 'A'
  @State mobileNo: string = 'xxx'

  build() {
    Column({ space: 20 }) {
      Row({ space: 5 }) {
        TextInput({ text: this.mobileNo })
          .width(200).height(50).fontColor(Color.Black)
          .key('A')
        Button("编辑手机号")
          .width(80).height(35).fontColor(Color.White)
          .onClick(() => {
            let res = focusControl.requestFocus('A') // 使选中的this.selectId的组件获焦
            if (res) {
              promptAction.showToast({ message: 'Request success' })
            } else {
              promptAction.showToast({ message: 'Request failed' })
            }
          })
      }
    }.width('100%').margin({ top: 20 })
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS TextInput自动获取焦点问题
116浏览 • 1回复 待解决
TextInput组件获取焦点的几种场景
2718浏览 • 1回复 待解决
HarmonyOS TextInput焦点问题
426浏览 • 1回复 待解决
HarmonyOS 如何通过代码获取appID
43浏览 • 1回复 待解决
HarmonyOS TextInput 取消默认焦点
552浏览 • 1回复 待解决
如何监听TextInput是否获得焦点
1948浏览 • 1回复 待解决
TextInput如何取消自动获得焦点
607浏览 • 1回复 待解决
HarmonyOS TextInput无法取消焦点
346浏览 • 1回复 待解决