TextInputLayout的使用

原文链接:Android 5.0新控件——TextInputLayout
先看效果图:

TextInputLayout的使用_第1张图片
效果图

简要描述使用方法:
TextInputLayout其实是一个容器,他继承自LinearLayout,该容器是作用于TextView的,TextInputLayout只能包裹一个子节点,类似于ScrollView。

1-首先添加依赖
compile 'com.android.support:design:23.0.1'

2-使用方法

TextInputLayout的使用_第2张图片
布局中的使用.png

如此便可完成TextInputLayout的使用了。

3-设置动画的开关

TextInputLayout的使用_第3张图片
关闭动画

4-显示错误信息

显示错误信息

5-设置Hint移动到上方的颜色

TextInputLayout的使用_第4张图片
Paste_Image.png

6-设置字体颜色
直接设置对应的TextView的TextColor

7-设置下划线的颜色


TextInputLayout的使用_第5张图片
设置下划线的颜色

8-设置文字计数器

TextInputLayout的使用_第6张图片
Paste_Image.png
TextInputLayout的使用_第7张图片
Paste_Image.png

9-提示错误

TextInputLayout的使用_第8张图片
Paste_Image.png
TextInputLayout的使用_第9张图片
Paste_Image.png

你可能感兴趣的:(TextInputLayout的使用)