在EditText中启用自动建议及其布局

时间:2017-06-06 12:57:51

标签: android android-edittext

我正在使用自定义列表视图public DefaultChannelGroupFuture sync() throws InterruptedException { super.sync(); return this; } public Promise<V> sync() throws InterruptedException { await(); rethrowIfFailed(); return this; } public Promise<V> await() throws InterruptedException { if (isDone()) { return this; } if (Thread.interrupted()) { throw new InterruptedException(toString()); } synchronized (this) { while (!isDone()) { checkDeadLock(); incWaiters(); try { wait(); } finally {`enter code here` decWaiters(); } } } return this; } public Promise<V> setSuccess(V result) { if (setSuccess0(result)) { notifyListeners(); return this; } throw new IllegalStateException("complete already: " + this); } private boolean setSuccess0(V result) { if (isDone()) { return false; } synchronized (this) { // Allow only once. if (isDone()) { return false; } if (result == null) { this.result = SUCCESS; } else { this.result = result; } if (hasWaiters()) { notifyAll(); } } return true; }

我的问题是,当我输入Edittext时,键盘不会显示位于键盘顶部的Suggestion布局。

我的EditText代码为,

EditText

我如何解决这个恼人的问题。?

1 个答案:

答案 0 :(得分:0)

您可以通过添加此行来启用编辑文本的自动建议

 emailET.setInputType(InputType.TYPE_CLASS_TEXT);

在java文件中并添加

android:autoText="true" 

在xml虽然现在折旧了autoText,你可以通过android studio得到很好的建议:)