android float button,FloatActionButton 使用

FloatActionButton (简称 FAB) 是负责显示界面基本操作的圆形按钮,其提供的最好是高频率的操作。

使用

FloatActionButton 继承自 ImageView,具备 ImageView 的全部属性。

xml 布局代码

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:id="@+id/coordinatorLayout">

android:id="@+id/tv"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="bottom"

android:layout_marginBottom="40dp"

android:text="anchor"/>

android:id="@+id/fab"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@mipmap/ic_launcher"

app:layout_anchor="@id/tv"

app:layout_anchorGravity="end|bottom"

app:elevation="6dp"

app:pressedTranslationZ="12dp"

app:backgroundTint="#303F9F"

app:rippleColor="#FFFF00"

app:fabSize="normal"

/>

属性

作用

android:src

FAB中显示的图标

app:layout_anchor

设置 FAB 的锚点,即以该控件为参考

app:layout_anchorGravity

FAB 相对锚点的位置

app:elevation

正常的阴影大小

app:pressedTranslationZ

按下时的阴影大小

app:backgroundTint

正常的背景颜色,默认是 @color/colorAccent的颜色

app:rippleColor

按下时的背景颜色

app:fabSize

FAB的大小,normal或mini(分别对应56dp和40dp)

注意

想让 FAB 显示点击后的颜色和阴影效果,需要设置 onClick 事件。

app:layout_anchor 其父布局需要是 CoordinatorLayout,否则没有效果。参考

的的锚点,不能是父布局,否则会报错。

java.lang.IllegalStateException: View can not be anchored to the the parent CoordinatorLayout

java 代码

floatingActionButton = findViewById(R.id.fab);

coordinatorLayout = findViewById(R.id.coordinatorLayout);

floatingActionButton.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

Snackbar.make(coordinatorLayout, "普通的Snackbar", Snackbar.LENGTH_LONG).show();

}

});

实现效果

711429a34a12?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

1547185182832.gif

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值