我想在没有建议的情况下在 android中实现Multiline EditText 。我用谷歌搜索了很多,我发现下面的代码:
noticeEditText.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
或者
noticeEditText.setInputType( android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD );
或者
在布局文件中:
android:inputType="textFilter"
但我的问题是,没有任何建议, Edit Text 是单行的。我还添加了以下属性:
noticeEditText.setSingleLine(false);
noticeEditText.setVerticalScrollBarEnabled(true);
noticeEditText.setHorizontalScrollBarEnabled(false);
但仍然得到单行编辑文本视图。我应该怎么做才能在没有建议的情况下获得多行编辑文本视图。
谢谢。