机器人之间的区别:inputType =" textPassword"," textVisiblePassword"," textWebPasswor

2023-09-07 11:02:23 作者:不念旧人

谁能解释之间的差异

 安卓inputType =textPassword
   机器人:inputType =textVisiblePassword
   机器人:inputType =textWebPassword
   机器人:inputType =numberPassword
 

EditText上的ViewGroup在Android的布局?

解决方案

 安卓inputType =textPassword
 

上面的命令将密码作为一个字符串

 安卓inputType =textVisiblePassword
 
在js在怎样获取用户输入在 input type text 中的值

以上一人将进行密码文本可见

 安卓inputType =numberPassword
 

而这一次将采取数字密码只有

Can anyone explain the differences between the

   android:inputType="textPassword",
   android:inputType="textVisiblePassword",
   android:inputType="textWebPassword",
   android:inputType="numberPassword"

of EditText ViewGroup in Android Layout?

解决方案

android:inputType="textPassword"

Above command will take the password as a string

android:inputType="textVisiblePassword"

Above one will make the password text visible

android:inputType="numberPassword

And this one will take numeric password only