编辑文本密码切换 Android

Edit text Password Toggle Android(编辑文本密码切换 Android)
本文介绍了编辑文本密码切换 Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我试图在输入类型为文本密码的编辑文本中向用户显示输入的密码.

我在这样的切换图标上实现了手势监听器-

public boolean onTouch(View view, MotionEvent motionEvent) {开关(view.getId()){案例 R.id.ivPasswordToggle:开关(motionEvent.getAction()){案例 MotionEvent.ACTION_DOWN:Toast.makeText(getContext(),"show",Toast.LENGTH_SHORT).show();etPassword.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);休息;案例 MotionEvent.ACTION_UP:etPassword.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD | InputType.TYPE_CLASS_TEXT);Toast.makeText(getContext(),"hide",Toast.LENGTH_SHORT).show();休息;}休息;}返回真;}

我不知道是什么问题,任何帮助将不胜感激.

解决方案

(针对AndroidX更新)

自支持库 v24.2.0 起.你可以很容易地做到这一点

你需要做的只是:

  1. 将设计库添加到您的依赖项中

     依赖项 {实现com.google.android.material:material:1.2.1"}

  2. TextInputEditTextTextInputLayout

    结合使用

     <com.google.android.material.textfield.TextInputLayoutxmlns:app=http://schemas.android.com/apk/res-auto"android:id=@+id/etPasswordLayout"android:layout_width=match_parent"android:layout_height="wrap_content";app:passwordToggleEnabled="true">

    I am trying to show user the typed password in edit text whose input type is text Password.

    I implemented gesturelistener over the toggle icon like this-

    public boolean onTouch(View view, MotionEvent motionEvent) {
            switch (view.getId())
            {
                case R.id.ivPasswordToggle:
    
                    switch ( motionEvent.getAction() ) {
                        case MotionEvent.ACTION_DOWN:
                            Toast.makeText(getContext(),"show",Toast.LENGTH_SHORT).show();
                            etPassword.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
                            break;
                        case MotionEvent.ACTION_UP:
                            etPassword.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD | InputType.TYPE_CLASS_TEXT);
                            Toast.makeText(getContext(),"hide",Toast.LENGTH_SHORT).show();
                            break;
                    }
                    break;
            }
            return true;
        }
    

    i dont know what is wrong, any help will be appreciated.

    解决方案

    (updated for AndroidX)

    Since the Support Library v24.2.0. you can achivie this very easy

    What you need to do is just:

    1. Add the design library to your dependecies

       dependencies {
           implementation "com.google.android.material:material:1.2.1"
       }
      

    2. Use TextInputEditText in conjunction with TextInputLayout

       <com.google.android.material.textfield.TextInputLayout
           xmlns:app="http://schemas.android.com/apk/res-auto"
           android:id="@+id/etPasswordLayout"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           app:passwordToggleEnabled="true">
      
           <android.support.design.widget.TextInputEditText
               android:id="@+id/etPassword"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:hint="@string/password_hint"
               android:inputType="textPassword"/>
       </com.google.android.material.textfield.TextInputLayout>
      

    passwordToggleEnabled attribute will make the password toggle appear

    1. In your root layout don't forget to add xmlns:app="http://schemas.android.com/apk/res-auto"

    2. You can customize your password toggle by using:

    app:passwordToggleDrawable - Drawable to use as the password input visibility toggle icon.
    app:passwordToggleTint - Icon to use for the password input visibility toggle.
    app:passwordToggleTintMode - Blending mode used to apply the background tint.

    More details in TextInputLayout documentation.

    这篇关于编辑文本密码切换 Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Multiple Gestures for UIGestureRecognizers (iPhone, Cocos2d)(UIGestureRecognizers (iPhone, Cocos2d) 的多种手势)
How can I use CClistview in COCOS2d Android?(如何在 COCOS2d Android 中使用 CClistview?)
cocos2d-android: how to display score(cocos2d-android:如何显示分数)
Sqlite database not copied from asset folder Android(Sqlite 数据库未从资产文件夹 Android 复制)
SQLite Database Copy Appears Corrupted When Generated by Device and not Emulator(SQLite 数据库副本在由设备而不是模拟器生成时出现损坏)
Android file copy(安卓文件拷贝)