Difference between android:inputType=“textPassword”, “textVisiblePassword”,“textWebPassword” and “numberPassword” in android?

后端 未结 3 1982
囚心锁ツ
囚心锁ツ 2020-12-10 01:13

Can anyone explain the differences between the

   android:inputType=\"textPassword\",
   android:inputType=\"textVisiblePassword\",
   android:inputType=\"te         


        
3条回答
  •  爱一瞬间的悲伤
    2020-12-10 01:54

    android:inputType="textPassword"
    

    The attribute above will take the password as a string.

    android:inputType="textVisiblePassword"
    

    The one above will make the password text visible.

    android:inputType="numberPassword"
    

    And this one will take a numeric password only.

提交回复
热议问题