editText中设置回车输入不换行
这是源码 Mms 编辑界面所使用的一个效果,在信息正文的编辑框里输入回车是不会实现换行的,实现代码如下,也许有时候你也有这样的需求。
[java] view plaincopy
-
Activtyy 实现TextView.OnEditorActionListener这个接口
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (event != null) {
// if shift key is down, then we want to insert the ‘\n‘ char in the TextView; 注意看下注释
// otherwise, the default action is to send the message.
if (!event.isShiftPressed()) {
return true;
}
return false;
}
时间: 2024-10-12 14:49:08