FloatingActionButton

1. 使用FloatingActionButton的情形

为了突出FAB的重要性,一个页面最好只有一个FAB
使用的时候需要导入desgin包,Android Studio 新版本都已经自动导入了,这里就不多说

 compile 'com.android.support:design:25.1.0'

2. FloatingActionButton的大小一般有两种大小(官方)

  1. 56 * 56dp :默认的大小,最常用的尺寸。
  2. 40 * 40 dp :Mini版。
    当然也是可以改变大小,不过一般使用

按钮中间图标大小官方推荐为 **24*24dp**

3.FloatingActionButton的属性

FloatingActionButton是继承ImageView,包含了ImageView的所有属性,除此之外,还有几个新增加的特殊属性,需要使用命名空间来使用。

引入命名空间:xmlns:app="http://schemas.android.com/apk/res-auto"

TextInputEditText

介绍

TextInputEditTextEditText的子类,相当于完善了有些EditText的缺点

TextInputLayout

介绍

这个布局其实是与EditText连用,可以实现密码框的显示与隐藏,和点击输入的时候,会将提示文字浮现在上方

Android Material Design控件使用(二)——FloatButton TextInputEditText  TextInputLayout 按钮和输入框-LMLPHP

属性

02-11 15:50