ListView和Recyclerview实现滑动隐藏与显示FloatingActionButton

先看效果:

listview实现
listview实现
recyclerview实现
recyclerview实现

FloatingActionButton

build.gradle 的 dependencies 需要引入

    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:27.1.1'

FloatingActionButton XML布局设计

<android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20.0dip"
        app:backgroundTint="@color/colorfab"
        app:elevation="5.0dip"
        app:fabSize="normal"
        android:src="@drawable/ic_menu_compose"
        app:layout_anchor="@id/listview"
        app:layout_anchorGravity="bottom|right"
        app:pressedTranslationZ="10.0dip"
        app:rippleColor="@color/colorfabclick"
        />

android:src:FAB中显示的图标.
app:backgroundTint:正常的背景颜色 ,这里是在values的colors.xml中引用
app:rippleColor:按下时的背景颜色
app:elevation:正常的阴影大小
app:pressedTranslationZ:按下时的阴影大小
app:layout_anchor:设置FAB的锚点,即以哪个控件为参照设置位置,我在上面设置了listview,所以以 listview为锚点,且父类布局须为CoordinatorLayout
app:layout_anchorGravity:FAB相对于锚点的位置,
app:fabSize:FAB的大小,这里设normal,没试过mini

完整xml布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/coordinator1">

    <ListView
        android:id="@+id/listview"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        />
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20.0dip"
        app:backgroundTint="@color/colorfab"
        app:elevation="5.0dip"
        app:fabSize="normal"
        android:src="@drawable/ic_menu_compose"
        app:layout_anchor="@id/listview"
        app:layout_anchorGravity="bottom|right"
  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值