Skip to content Skip to sidebar Skip to footer

Disable Keyboard Cache Android Programmatically

How to disable Keyboard cache in Android programmatically for sensitive input fields?

Solution 1:

android:inputType="password" doesn't cache


Solution 2:

To disable to Edittext suggestions

android:inputType="textNoSuggestions"  

Solution 3:


Post a Comment for "Disable Keyboard Cache Android Programmatically"