Android programmatically disable autocomplete/autosuggest for EditText in emulator(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的自动完成/自动建议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android以编程方式禁用模拟器中EditText的自动完成
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01