HarmonyOS TextInput密码类型

在TextInput设置InputType.Password密码类型下,是否有api能让开发者控制密码是否可见,不是PasswordIcon这种形式,passwordIcon目前只能设置图标,不支持设置大小

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

可以自定义设置控制密码是否可见的图标,参考如下demo:

@Entry
@Component
struct TextInputExample {
  @State text: string = ''
  @State password: string = '';
  @State positionInfo: CaretOffset = { index: 0, x: 0, y: 0 }
  controller: TextInputController = new TextInputController()
  @State isShowPassword:boolean = false;

  build() {
    Column() {
      TextInput({ text: this.text, placeholder: 'input your word...', controller: this.controller })
        .placeholderColor(Color.Grey)
        .placeholderFont({ size: 14, weight: 400 })
        .caretColor(Color.Blue)
        .width('95%')
        .height(40)
        .margin(20)
        .fontSize(14)
        .fontColor(Color.Black)
        .inputFilter('[a-z]', (e) => {
          console.log(JSON.stringify(e))
        })
        .onChange((value: string) => {
          this.text = value
        })
      // 密码输入框
      Row(){
        // if(this.isClick === true){
        TextInput({text: $$this.password, placeholder: 'input your password...' })
          .width('95%')
          .height(40)
          .margin(8)
          .type(this.isShowPassword ? InputType.Normal : InputType.Password)
          .maxLength(9)
          .showPasswordIcon(false)
        Image(this.isShowPassword ? $r('app.media.ic_personal_normal'): $r('app.media.ic_personal_focus'))
          .width('25vp')
          .height('25vp')
          .margin({right:'80vp',bottom:'50%'})
          .position({x:'85%',y:15})
          .onClick(()=>{
            this.isShowPassword = !this.isShowPassword
          })
      }
      .width('100%')

    }.width('100%')
  }
}

两种不同的passwordicon对应的需要不同的键盘模式,但是不同的键盘之间进行切换肯定会存在差异,没办法改善

分享
微博
QQ
微信
回复
11h前
相关问题
HarmonyOS 有没有密码控件?
344浏览 • 1回复 待解决
HarmonyOS 密码保险箱
379浏览 • 1回复 待解决
HarmonyOS TextInput焦点问题
404浏览 • 1回复 待解决
HarmonyOS TextInput 组件问题
482浏览 • 1回复 待解决
HarmonyOS TextInput 换行问题
685浏览 • 1回复 待解决
HarmonyOS 如何是实现手势密码功能
462浏览 • 1回复 待解决
HarmonyOS TextInput意外获焦
384浏览 • 1回复 待解决
HarmonyOS TextInput 取消默认焦点
517浏览 • 1回复 待解决
HarmonyOS TextInput的使用
341浏览 • 1回复 待解决
HarmonyOS TextInput如何clearFocus
365浏览 • 1回复 待解决
HarmonyOS HAR publish时需要的密码问题
690浏览 • 1回复 待解决
HarmonyOS 图案密码锁组件怎么实现
445浏览 • 1回复 待解决