禁用editText上的自动提示/自动完成,而不使用Visible Password方法

时间:2014-02-20 17:07:31

标签: android autocomplete android-edittext

我正在尝试在editText上禁用自动完成功能,并尝试了以下方法:

android:inputType="textFilter" //doesn't work

android:inputType="textNoSuggestions"   // doesn't work

myedittext.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS); // doesn't work

myedittext.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD); // doesn't work

android:inputType="textVisiblePassword" //it does work, but I can't toggle kanji
//if I use Japanese characters, so I'd like another method please...

由于editText应该适用于英文和日文字母/字符,最后一种方法并没有真正为我剪掉,因为我无法切换日文字符(它们有三个字母系统,所以有需要切换......)

有方法可以使用吗?谢谢。

0 个答案:

没有答案