editText中设置回车输入不换行

Posted 杨伟乔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了editText中设置回车输入不换行相关的知识,希望对你有一定的参考价值。

editText中设置回车输入不换行

        这是源码 Mms 编辑界面所使用的一个效果,在信息正文的编辑框里输入回车是不会实现换行的,实现代码如下,也许有时候你也有这样的需求。

    1. Activtyy 实现TextView.OnEditorActionListener这个接口
    2. public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
    3. if (event != null) {
    4. // if shift key is down, then we want to insert the ‘\n‘ char in the TextView; 注意看下注释
    5. // otherwise, the default action is to send the message.
    6. if (!event.isShiftPressed()) {
    7. return true;
    8. }
    9. return false;
    10. }





以上是关于editText中设置回车输入不换行的主要内容,如果未能解决你的问题,请参考以下文章

vscode template中设置不换行

怎么让 android EditText hint 不换行

android Edittext 输入文字时 怎么限制限制回车换行?急 谢了

使用输入类型编号在 EditText 中设置文本

Android点击edittext不换行弹出键盘

EXCEL中如何输入文字且文字不换行