Skip to content Skip to sidebar Skip to footer

Input Type "textvisiblepassword" Vs "text": What's The Difference?

Short and sweet: I have no idea what the difference between textVisiblePassword and text is, in regards to inputType on an EditText. According to the docs, textVisiblePassword is

Solution 1:

Using textVisiblePassword type explicilty tells software keyboard, that content of this field should not be added to any vocabulary, synchronized through network, added to usage statistics or anything like this. It still makes sense to use it for sensitive data, like logins - not exactly secret, but nothing you would share.

Solution 2:

when we setup textPassword input type on edit text. textVisiblePassword inputtype is used when we want to have show password option. This option will make the password readable whereas text inputtype won't do this

Post a Comment for "Input Type "textvisiblepassword" Vs "text": What's The Difference?"