dependencies {
compile 'com.android.support:design:23.3.0'
}
<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>
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) {
}
});
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有