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 can I use CClistview in COCOS2d Android?(如何在 COCOS2d Android 中使用 CClistview?)
cocos2d-android: how to display score(cocos2d-android:如何显示分数)
Sqlite database not copied from asset folder Android(Sqlite 数据库未从资产文件夹 Android 复制)
SQLite Database Copy Appears Corrupted When Generated by Device and not Emulator(SQLite 数据库副本在由设备而不是模拟器生成时出现损坏)
Android file copy(安卓文件拷贝)
Android how to detect Copy event of Edittext in android(Android如何在android中检测Edittext的Copy事件)