inputType EditText中的textMultiLine和textImeMultiLine有什么区别?
What difference between textMultiLine and textImeMultiLine in inputType EditText?
我想了解 textMultiLine
和
textImeMultiLine
android:inputType
的选项 EditText
。然而
我无法理解答案。文档
说
IME is a control enabling users to enter text.
但我不明白 texMultiLine 与 textImeMultiLine 有何不同。
TextImeMultiLine: TYPE_CLASS_TEXT 的标志:与此关联的常规文本视图不应为多行,
but when a fullscreen input method is providing text it should use multiple lines if it can.
TextMultiLine: TYPE_CLASS_TEXT 标志:可以在字段中输入多行文本。如果未设置此标志,文本字段将被限制为一行。如果未设置此标志,IME 也可以选择不显示回车键,因为不需要创建新行。
我在谷歌搜索中发现的内容...TextImeMultiLine 用于接受“不直接在键盘上显示”的文本,例如来自中文、日文和韩文等语言的文本。 Ime是输入法编辑器。
An IME (input-method editor) is an application that allows a standard keyboard (such as a US-101 keyboard) to be used to type characters and symbols that are not directly represented on the keyboard itself.
我想了解 textMultiLine
和
textImeMultiLine
android:inputType
的选项 EditText
。然而
我无法理解答案。文档
说
IME is a control enabling users to enter text.
但我不明白 texMultiLine 与 textImeMultiLine 有何不同。
TextImeMultiLine: TYPE_CLASS_TEXT 的标志:与此关联的常规文本视图不应为多行,
but when a fullscreen input method is providing text it should use multiple lines if it can.
TextMultiLine: TYPE_CLASS_TEXT 标志:可以在字段中输入多行文本。如果未设置此标志,文本字段将被限制为一行。如果未设置此标志,IME 也可以选择不显示回车键,因为不需要创建新行。
我在谷歌搜索中发现的内容...TextImeMultiLine 用于接受“不直接在键盘上显示”的文本,例如来自中文、日文和韩文等语言的文本。 Ime是输入法编辑器。
An IME (input-method editor) is an application that allows a standard keyboard (such as a US-101 keyboard) to be used to type characters and symbols that are not directly represented on the keyboard itself.