码迷,mamicode.com
首页 > 其他好文 > 详细

editText中设置回车输入不换行

时间:2016-10-01 12:48:43      阅读:765      评论:0      收藏:0      [点我收藏+]

标签:

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中设置回车输入不换行

标签:

原文地址:http://www.cnblogs.com/ywq-come/p/5925622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!