Android之FloatingActionButton使用

FloatingActionButton悬浮按钮。

继承自ImageView,配合CoordinatorLayout一起使用。

Android之FloatingActionButton使用_第1张图片


1.引用

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


2.布局




    

    

    




3.属性

app:backgroundTint="@color/blue" //背景颜色
app:elevation="0dp" //默认状态下的阴影大小
app:pressedTranslationZ="0dp" //点击状态下的阴影大小
app:borderWidth="0dp" //边宽,上下兼容,设置0dp
app:rippleColor="@color/gray" //点击时的背景颜色
app:layout_anchor //设置锚点,即以哪个控件为参照点设置位置。
app:layout_anchorGravity //设置相对锚点的位置,值有 bottom、center、right、left、top等。
app:fabSize //按钮大小,normal和mini



Github:https://github.com/yechaoa/MaterialDesign


你可能感兴趣的:(Android,知识点,Material,Design)