Rinks05
Rinks05

Reputation: 31

Android application

Whenever i login to application i need to enter the password.But next time when i enter the password it shows me complete password over the soft keyboard of android.I need to clear this data from android memory.

Upvotes: 1

Views: 106

Answers (1)

Maaalte
Maaalte

Reputation: 6081

If you don't want the password hint to be shown try adding the following to your EditText attributes

android:inputType="textFilter|textMultiLine|textNoSuggestions"

Upvotes: 3

Related Questions