中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
进入搜索页面时,需要主动弹出软键盘,有没有,搜索前主动弹出,搜索结束主动关闭键盘
微信扫码分享
@Entry @Component struct TextInputPage { controller: TextInputController = new TextInputController() @State inputValue: string = "" build() { RelativeContainer() { TextInput({ controller: this.controller, text: this.inputValue }) .key('TextInput') .margin(10) .border({ width: 1 }) .height('48vp') .defaultFocus(true) } .height('100%') .width('100%') } }