Android以编程方式禁用模拟器中EditText的自动完成

Android programmatically disable autocomplete/autosuggest for EditText in emulator(Android以编程方式禁用模拟器中EditText的自动完成/自动建议)
本文介绍了Android以编程方式禁用模拟器中EditText的自动完成/自动建议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

针对 Android 2.2

Targeting Android 2.2

我已阅读以下问题的答案:

I have read the answers to the following questions:

关闭自动提示 EditText?

Android:多行 &EditText 中没有自动建议

我尝试了以下建议的变体:

I have tried the following variations on the suggestions:

setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_FILTER);

setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_FILTER | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

setInputType(InputType.TYPE_TEXT_VARIATION_NORMAL | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

setInputType(InputType.TYPE_TEXT_VARIATION_NORMAL | InputType.TYPE_TEXT_VARIATION_FILTER);

setInputType(InputType.TYPE_TEXT_VARIATION_NORMAL | InputType.TYPE_TEXT_VARIATION_FILTER | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

所有这些都适用于我测试过的大多数设备(Droid X、Droid 2、Thunderbolt、Incredible),但不适用于模拟器和至少 1 台设备(Samsung GT i5500).

All of these work on most devices I've been testing (Droid X, Droid 2, Thunderbolt, Incredible) but don't work on the emulator and at least 1 device (Samsung GT i5500).

是否有任何其他方式以编程方式以模拟器和某些设备将识别和尊重的方式禁用 EditText 的自动完成/自动建议?

Is there any other way to programmatically disable the autocomplete/autosuggest for an EditText in a way the emulator and certain devices will recognize and respect?

推荐答案

对于 Vodafone 845 (2.1), huawei 8800 (2.2) 设备,textVisiblePassword 似乎阻止了单词预测.

For Vodafone 845 (2.1), huawei 8800 (2.2) devices, textVisiblePassword seems to prevent word prediction.

vendorId.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);

android:inputType="textVisiblePassword"

[编辑]这个答案已经很老了,我没有环境来测试在这里获得最新的评论信息,对不起.

[Edit] this answer is quite old and I don't have the environment anymore to test to get up-to-date info for comments here, sorry.

这篇关于Android以编程方式禁用模拟器中EditText的自动完成/自动建议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)