Reputation: 79
How to disable Keyboard cache in Android programmatically for sensitive input fields?
Upvotes: 6
Views: 4757
Reputation: 374
I'm guessing the best would be:
inputType="textVisiblePassword"
An overview is provided at: Difference between android:inputType="textPassword", "textVisiblePassword","textWebPassword" and "numberPassword" in android?
(For different inputtypes: https://developer.android.com/reference/android/R.styleable.html?hl=en#TextView_inputType)
Upvotes: 1
Reputation: 544
To disable to Edittext
suggestions
android:inputType="textNoSuggestions"
Upvotes: 1