当我在EditText中输入用户时,我需要默认显示表情符号按钮。
现在我的EditText的键盘如下所示:
看右下角,你会看到完成按钮。
同时在短信应用键盘看起来像:
[
在右下角显示微笑按钮。
如何在EditText的键盘上显示笑脸按钮?
现在我有下一个ExitText布局:
<EditText
... // some layout params
android:inputType="textCapSentences|textAutoCorrect|textAutoComplete"/>
答案 0 :(得分:1)
您可以尝试在EditText
中添加以下属性。代码中缺少的属性为textShortMessage
。所以你可以尝试添加相同的。
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
android:imeOptions="actionSend|flagNoEnterAction"
答案 1 :(得分:1)
您只需添加 imeOption textShortMessage
。
<EditText
... // some layout params
android:inputType="textShortMessage|textCapSentences|textAutoCorrect|textAutoComplete"/>