HarmonyOS TextArea与系统键盘的使用方式

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

可以通过设置焦点来控制

API链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-universal-attributes-focus-V5#focuscontroller12

参考代码:

@Entry
@Component
struct Page {
  @State hideState: boolean = true
  controller: TextAreaController = new TextAreaController()
  foucsC = this.getUIContext().getFocusController()
  selectIndex = 0

  build() {
    Column() {
      Column() {
        Text('隐藏/显示面板')
          .onClick(() => {
            this.hideState = !this.hideState
            this.foucsC.clearFocus()
            this.foucsC.requestFocus('TextInput')
          })
      }.layoutWeight(1)
      .width('100%')
      .justifyContent(FlexAlign.Center)
      .backgroundColor(Color.Green)

      Column() {
        TextArea({ controller: this.controller })
          .id('TextInput')
        Column() {
          Text('菜单面板')
        }
        .width('100%')
        .height(300)
        .justifyContent(FlexAlign.Center)
        .backgroundColor(Color.Blue)
        .visibility(this.hideState ? Visibility.None : Visibility.Visible)
      }

    }.width('100%')
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
6h前
相关问题
CustomDialog键盘问题
425浏览 • 1回复 待解决
HarmonyOS 系统信息获取方式
561浏览 • 1回复 待解决
HarmonyOS如何获取系统键盘高度?
496浏览 • 1回复 待解决
要做U盾SDK配套密码键盘
802浏览 • 1回复 待解决
HarmonyOS TextInput调用系统键盘问题
267浏览 • 1回复 待解决
HarmonyOS TextArea如何设置单行行高?
275浏览 • 1回复 待解决
HarmonyOS 变量定义使用
427浏览 • 1回复 待解决
HarmonyOS 关于AAIDdeviceid使用
251浏览 • 1回复 待解决