Reputation: 31
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
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