安卓笔记--Edittext禁止换行

直接在EditText的xml文件中通过配置android:singleLine="true"把虚拟键盘上的enter键禁止掉,不会显示

<edittext android:layout_width="fill_parent" 
          android:layout_height="38dp" 
          android:id="@+id/loginUserNameEdit" 
          android:background="@android:color/white" 
          android:hint="登录账户" 
          android:paddingleft="10dp" 
          android:maxlines="1" 
          android:singleline="true"></edittext>


posted on 2014-11-20 22:36  木鱼哥  阅读(263)  评论(0编辑  收藏  举报

导航