Material Design Support 8大控件介绍
jopen
9年前
TextInputLayout
显示提示信息
可以通过调用setError()在EditText下面显示一条错误信息
FloatingActionButton
悬浮操作按钮
Snackbar
相当于底部吐司,但比toast有更强大的快速反馈机制
TabLayout
可以实现固定的选项卡,也实现可滚动的选项卡
Navigation View
在drawlayout实现侧滑效果时,代替ListView要适配器的繁琐
1.app:headerLayout: 给NavigationView添加头部布局
2.app:menu:给NavigationView添加menu菜单布局
CoordinatorLayout
作为一个布局的根布局
作为一个为子视图之间相互协调手势效果的一个协调布局
AppBarLayout
AppBarLayout 是继承LinerLayout实现的一个ViewGroup容器组件,它是为了Material Design设计的App Bar,支持手势滑动操作。
CollapsingToolbarLayout
可伸缩折叠的Toolbar
具体用法请参考官网链接:Android Design Support Library
来自:http://blog.csdn.net/pengkv/article/details/50317627