这CoordinatorLayout是一个类似于FrameLayout但具有额外功能的容器,它FrameLayout在官方文档中被称为超级强大。
通过将 a 附加CoordinatorLayout.Behavior到 CoordinatorLayout 的直接子项,您将能够拦截触摸事件、窗口插入、测量、布局和嵌套滚动。
为了使用它,您首先必须在 gradle 文件中为支持库添加一个依赖项:
compile 'com.android.support:design:25.3.1'
可以在此处找到库的最新版本号
的一个实际用例CoordinatorLayout是使用FloatingActionButton. 在这种特定情况下,我们将在其上创建一个RecyclerView带有 aSwipeRefreshLayout和 aFloatingActionButton的对象。您可以这样做:
<?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 是如何锚定到 CoordinatorLayout 的 app:layout_anchor="@id/coord_layout"