本文实例为大家分享了TextinputLayout输入框悬浮标签的具体代码,供大家参考,具体内容如下
TextinputLayout也是5.0以后的效果,想要使用同样需要在build中配置:
dependencIEs { compile 'com.androID.support:design:23.3.0' }
TextinputLayout可以用来显示一个提示错误信息,把Hint放到EditText左上方等效果的一个布局;
如果项目中有这类的需求,使用TextinputLayout实现起来非常方便;
使用方法也比较简单,直接用TextinputLayout包裹EditText即可:
<androID.support.design.Widget.TextinputLayout androID:ID="@+ID/til_user" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_margintop="20dp" androID:layout_marginleft="20dp" androID:layout_marginRight="20dp"> <EditText androID:ID="@+ID/et_user" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:hint="请输入用户名"/> </androID.support.design.Widget.TextinputLayout>
但是默认情况下,当你输入文本的时候TextinputLayout只会将Hint移动到左上方,不会有错误提示,错误提示需要我们手动设置:
etUser= (EditText) findVIEwByID(R.ID.et_user); tilUser= (TextinputLayout) findVIEwByID(R.ID.til_user); //添加文本变化监听 etUser.addTextChangedListener(new TextWatcher() { @OverrIDe //输入文本之前调用 public voID beforeTextChanged(CharSequence s,int start,int count,int after) { } @OverrIDe //正在输入的时候调用 public voID onTextChanged(CharSequence s,int before,int count) { if(s.length()>6){ //打开TextinputLayout异常提示 tilUser.setErrorEnabled(true); //设置TextinputLayout异常提示信息 tilUser.setError("账号最大长度为6"); }else { //关闭TextinputLayout异常提示 tilUser.setErrorEnabled(false); } } @OverrIDe //输入以后调用 public voID afterTextChanged(Editable s) { } });
点击打开链接免费下载源码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
以上是内存溢出为你收集整理的TextInputLayout输入框控件的悬浮标签全部内容,希望文章能够帮你解决TextInputLayout输入框控件的悬浮标签所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)