5

有人可以告诉我如何在“多行”MultiAutoCompleteTextView 上显示建议。我去了 API 参考Here

我尝试了该示例并且自动完成工作得很好,除非当我转到下一行时,我不再看到建议。

我有一个定义我的 MultiAutoCompleteTextView 的 xml,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<MultiAutoCompleteTextView  xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/html"
        android:focusable="true"
        android:gravity="top"
        android:background="@null"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingBottom="5dp"
        android:singleLine="false"
        android:completionThreshold="1"
        android:textSize="14dp"
        android:scrollHorizontally="true"
        android:focusableInTouchMode="true" />

我的代码是这样的:(从参考中得到)

   MultiAutoCompleteTextView editor = (MultiAutoCompleteTextView) LayoutInflater.from(getApplicationContext()).inflate(R.layout.editor, null);

   ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES);
   editor.setAdapter(adapter);
   editor.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());

因为我在 MultiAutoCompleteTextView xml 上将 singleLine 设置为 false。当我按回车键转到下一行时,这些建议不会显示。

谁可以帮我这个事。有没有办法可以根据自己的喜好覆盖建议面板?还有没有办法定位面板?

4

1 回答 1

2
android:inputType="textMultiLine"

“普通文本键盘,允许用户输入包含换行符(回车)的长字符串。”

http://developer.android.com/guide/topics/ui/controls/text.html

于 2015-09-24T06:33:03.517 回答