CoordinatorLayout

Version >= 2.3

CoordinatorLayout 有点类似于 FrameLayout 但额外的功能的容器,它被称为官方文档中超级动力 FrameLayout

通过将 CoordinatorLayout.Behavior 附加到 CoordinatorLayout 的直接子节点 ,你将能够拦截触摸事件,窗口插入,测量,布局和嵌套滚动。

要使用它,首先必须在 gradle 文件中为支持库添加依赖项:

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

可以在此处找到最新版本库的编号

CoordinatorLayout 的一个实际用例是创建一个带有 FloatingActionButton 的视图。在这个具体案例中,我们将创建一个 RecyclerView,其中包含 SwipeRefreshLayoutFloatingActionButton。这是你如何做到这一点:

<?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:id="@+id/coord_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/recycler_view"/>

    </android.support.v4.widget.SwipeRefreshLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:clickable="true"
        android:color="@color/colorAccent"
        android:src="@mipmap/ic_add_white"
        android:layout_gravity="end|bottom"
        app:layout_anchorGravity="bottom|right|end"/>

</android.support.design.widget.CoordinatorLayout>

注意 FloatingActionButton 如何通过 app:layout_anchor="@id/coord_layout" 锚定到 CoordinatorLayout