如何关闭EditText中的建议

如何关闭EditText中的建议

本文介绍了如何关闭EditText中的建议?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Android的EditText中关闭建议?

How can I turn off suggestions in EditText in Android?

推荐答案

Yoni Samlan发布的链接中已经对此进行了描述.您应该正确阅读文档;)

It's already described in the link Yoni Samlan posted. You should read the documentation correctly ;)

有一个名为setInputType的方法.您所需要做的就是用

There is a method called setInputType. All you need is to call it with

edittext.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

这篇关于如何关闭EditText中的建议?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:47