TextInputLayout输入框控件的悬浮标签
程序员文章站
2022-03-08 13:02:09
本文实例为大家分享了textinputlayout输入框悬浮标签的具体代码,供大家参考,具体内容如下
textinputlayout也是5.0以后的效果,想要使用同样...
本文实例为大家分享了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 start, 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) { } });
点击打开链接免费下载源码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
JS实现动态给标签控件添加事件的方法示例
-
Angular 实现输入框中显示文章标签的实例代码
-
使用iframe作为日历的载体,不再被select和flash等控件挡住的日期输入框
-
Html5新标签datalist实现输入框与后台数据库数据的动态匹配
-
UITextField控件处理键盘弹出时遮住输入框的问题。
-
jQuery实现IE输入框完成placeholder标签功能的方法
-
Android 实现带头部文字输入框的自定义控件
-
JQ input输入框回车生成标签,可删除,并获取标签的值
-
Android开发之基于RecycleView实现的头部悬浮控件
-
TextInputLayout输入框控件的悬浮标签