HarmonyOS TextInput意外获焦

A 页面创建一个 TextInput ,默认无焦点(defaultFocus为false );从 A 页面 跳转到 B 页面;再从 B页面 返回到 A页面。此时原本无焦点的TextInput突然获得焦点,并弹出键盘(过程中用户没有点击input )。

HarmonyOS
2024-10-09 12:20:51
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang
@Entry  
@Component  
struct Index {  
  @State message: string = 'Hello World';  
  @Provide('pageInfos') pageInfos: NavPathStack = new NavPathStack()  
  @Builder  
  PageMap(name: string) {  
    if (name === 'pageOne') {  
      pageOne()  
    }  
  }  
  build() {  
    Navigation(this.pageInfos) {  
      Column()  
        .height(200)  
        .width(100)  
      Text(this.message)  
        .id('HelloWorld')  
        .fontSize(50)  
        .fontWeight(FontWeight.Bold)  
        .focusable(true)  
        .defaultFocus(true)  
        .onClick(()=> {  
          this.pageInfos.pushPathByName('pageOne', undefined)  
        })  
      TextInput({placeholder: "请输入"})  
    }  
    .navDestination(this.PageMap)  
    .height('100%')  
    .width('100%')  
  }  
}  
@Component  
struct pageOne {  
  @State message: string = 'Hello World';  
  build() {  
    NavDestination() {  
      Text(this.message)  
        .id('HelloWorld')  
        .fontSize(50)  
        .fontWeight(FontWeight.Bold)  
        .focusable(true)  
        .defaultFocus(true)  
      TextInput({placeholder: "请输入"})  
    }  
    .height('100%')  
    .width('100%')  
  }  
}
分享
微博
QQ
微信
回复
2024-10-09 17:40:36
相关问题
HarmonyOS RichEditor /失问题
246浏览 • 1回复 待解决
应用通用及走方式如何实现
1836浏览 • 1回复 待解决
restartApp在应用非时无法使用
356浏览 • 1回复 待解决
H5页面输入框自动弹起软键盘
1627浏览 • 1回复 待解决
HarmonyOS TextInput 换行问题
496浏览 • 1回复 待解决
HarmonyOS TextInput 组件问题
360浏览 • 1回复 待解决
HarmonyOS TextInput焦点问题
310浏览 • 1回复 待解决
HarmonyOS TextInput的使用
182浏览 • 1回复 待解决
HarmonyOS TextInput如何clearFocus
287浏览 • 1回复 待解决
HarmonyOS TextInput 取消默认焦点
415浏览 • 1回复 待解决
如何屏蔽方向键走事件
1971浏览 • 1回复 待解决
HarmonyOS 如何限制TextInput的规则?
282浏览 • 1回复 待解决