四、FloatingActoinButton

作者: Serenity那年 | 来源:发表于2017-06-01 11:58 被阅读76次

一、概述

首先看下继承关系

FloatingActionButton继承关系.png

二、基础使用

本质是一个ImageButton,只是比ImageButton多了点属性,具体多的属性请看下面介绍:

  • 1.adnroid:src FAB中显示在中间的图片背景;
  • 2.app:backgroundTint 设置FAB的整体背景,如果没有设置,默认会取theme中的colorAccent作为背景色;
  • 3.app:fabSize 设置FAB的大小,可选的值有三个;
  • 1 .mini
  • 2 .normal
  • 3 .auto:mini和normal都设置了固定的大小,具体的看下面的源码;而auto属性会根据屏幕原有的宽度来动态设置,在小屏幕上会使用mini,在大屏幕上使用normal,我们也可以通过layout_width和layout_height指定其大小;具体的大小屏幕标准看源码中以470dp为分界线;
  /**
     * The switch point for the largest screen edge where SIZE_AUTO switches from mini to normal.
     */
    private static final int AUTO_MINI_LARGEST_SCREEN_WIDTH = 470;
 private int getSizeDimension(@Size final int size) {
        final Resources res = getResources();
        switch (size) {
            case SIZE_AUTO:
                // If we're set to auto, grab the size from resources and refresh
                final int width = ConfigurationHelper.getScreenWidthDp(res);
                final int height = ConfigurationHelper.getScreenHeightDp(res);
                return Math.max(width, height) < AUTO_MINI_LARGEST_SCREEN_WIDTH
                        ? getSizeDimension(SIZE_MINI)
                        : getSizeDimension(SIZE_NORMAL);
            case SIZE_MINI:
                return res.getDimensionPixelSize(R.dimen.design_fab_size_mini);
            case SIZE_NORMAL:
            default:
                return res.getDimensionPixelSize(R.dimen.design_fab_size_normal);
        }
    }
  • 4.app:elevation FAB在z轴方向的距离,也就是海拔深度,实际效果就是阴影效果;
  • 5.app:borderWidth Fab边界的宽度,边界的颜色会比背景颜色稍淡,如下图所示;
  • 6.app:pressedTranslationZ 点击Fab在Z轴上的变化值;
  • 7.app:rippleColor 点击Fab时出现水波纹扩散的效果;
  • 8.app:layout_anchor 设置锚点,也就是设置相对那个控件id来进行变化;
  • 9.app:layout_anchorGravity 设置在锚点上的相对位置;
  • 10.app:useCompatPadding 兼容padding可用;
图解说明.png

具体在xml中的使用方式如下:

<android.support.design.widget.FloatingActionButton
        android:id="@+id/activity_float_action_button_fab"
        app:elevation="10dp"
        app:backgroundTint="@color/colorPrimary"
        app:fabSize="normal"
        app:borderWidth="10dp"
        android:layout_margin="12dp"
        app:layout_anchorGravity="bottom|end"
        android:src="@mipmap/ic_launcher_round"
        android:layout_width="wrap_content"
        app:layout_anchor="@id/fab_appbar"
        android:layout_height="wrap_content" />

三、Fab的监听回调

具体使用看下面代码:

/**
         * 在代码中动态设置Fab的隐藏和显示,并且能够
         * 监听Fab的隐藏和显示的状态变化;
         */
        mFab.show(new FloatingActionButton.OnVisibilityChangedListener() {
            @Override
            public void onShown(FloatingActionButton fab) {
                super.onShown(fab);
            }
        });

        mFab.hide(new FloatingActionButton.OnVisibilityChangedListener() {
            @Override
            public void onHidden(FloatingActionButton fab) {
                super.onHidden(fab);
            }
        });
        
        mFab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                
            }
        });

四、使用时注意事项

在使用Fab与BottomSheet联合使用时,发现如果使用include标签将bottomSheet的菜单布局引入,无法设置给include标签设置id,一旦设置id就会crash,要想正常使用,直接将菜单布局写出,不是将其引入;

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.androidwanga.serenitynanian.serenityproject.BottomDialogActivity">

    <!--底部菜单布局-->

    <!--LinearLayout底部布局菜单  include布局中不能添加id 否则就会报setLayoutParameter异常-->
    <include layout="@layout/layout_bottom_sheet_linear" />
     <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher_round"
        app:backgroundTint="@color/colorPrimary"
        app:borderWidth="10dp"
        app:layout_anchorGravity="end"
        app:elevation="10dp"
        app:fabSize="auto"
        app:pressedTranslationZ="10dp" />
       
</android.support.design.widget.CoordinatorLayout>

github仓库

相关内容:

一、CoordinatorLayout的梳理与使用

二、Toolbar的梳理与使用

三、TextInputLayout的梳理与使用

四、FloatingActionButton的梳理与使用

五、Snackbar的梳理与使用

六、CardView的梳理与使用

七、BottomSheetDialog的梳理与使用

八、TabLayout的梳理与使用

相关文章

  • 四、FloatingActoinButton

    一、概述 首先看下继承关系 二、基础使用 本质是一个ImageButton,只是比ImageButton多了点属性...

  • 四郎四郎傅四郎(四)

    上一章-南城(三) 第二章•无头女婴(一) 聚园柳庄内一私人别墅。 “四个,这是刚刚丁探长让人整理的和9...

  • 四(四)资源

    资源在MQL4程序中使用图形和声音 MQL4中的程序允许处理声音和图形文件:PlaySound() // 播放声...

  • 小 四 (四)

    这一次见面过后,又好多年没有见过小四。但是她三十岁那年,听到家里人又谈起了小四。 小四前两年又生了个女儿。由于她生...

  • 四幺四

    四月十四日,我想起了大学宿舍里面的扑克游戏四幺四,当时风靡整个后楼二十二系势力范围,一时“不会四幺四,人缘肯定次”...

  • 四苦 四醒 四行 四喜 四悲 四得(经典!)

    人生四苦 一苦:看不透 看不透人际中的纠结,争斗后的隐伤 看不透喧嚣中的平淡,繁华后的宁静 二苦:舍不得 舍不得曾...

  • 四人 · 四城 · 四时 · 四地

    四人 · 四城 · 四时 · 四地 由于工作和生活的原因,四个闺密的开始四地分隔生活,不一样的生活环境,不尽相同的...

  • 四郎四郎傅四郎

    契子 你有没有试过 掏心掏肺的爱一个人 嫉妒他对另一个人的好 却在他厌恶自己的那一刻 才发现 原来自己...

  • 四懂四会四能力

    四懂 1.懂本岗位的火灾危害性 2.懂预防措施 3.懂扑救火灾的方法 4.懂疏散 四会 1.会报警 2.会使用消防...

  • 四套四

    一、种子四大定律 我们是融于自然界的,不然没有大自然怎会有我们?故自然界的法则完全可以存在于我们的意识中。日常我们...

网友评论

    本文标题:四、FloatingActoinButton

    本文链接:https://www.haomeiwen.com/subject/sgqxfxtx.html