如何以编程方式为敏感输入字段禁用Android中的键盘缓存?
答案 0 :(得分:3)
android:inputType="password"
不会缓存
答案 1 :(得分:1)
禁用Edittext
建议
android:inputType="textNoSuggestions"
答案 2 :(得分:0)
我猜最好的是:
inputType="textVisiblePassword"
(对于不同的输入类型:https://developer.android.com/reference/android/R.styleable.html?hl=en#TextView_inputType)