# 1. 前言
`CoordinatorLayout`可以说是一个加强版的`FrameLayout`,由`AndroidX`库提供。它在普通情况下的作用和`FrameLayout`基本一致,但是它拥有一些额外的`Material`能力。
`CoordinatorLayout`可以监听其所有子控件的各种事件,并自动帮助我们做出最为合理的响应。
举个简单的例子,刚才弹出的`Snackbar`提示将悬浮按钮遮挡住了,而如果我们能让`CoordinatorLayout`监听到`Snackbar`的弹出事件,那么它会自动将内部的`FloatingActionButton`向上偏移,从而确保不会被`Snackbar`遮挡。
# 2. 使用
只需要将原来的`FrameLayout`替换一下就可以了,也可以理解为:`CoordinatorLayout`就是一个加强版的`FrameLayout`。比如前面我们使用过(在`FAB`中):
~~~
<!--第一个部分:使用CoordinatorLayout,因为FAB需要使用CoordinatorLayout包裹起来-->
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 顶部导航栏 -->
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_main"
android:layout_width="match_parent"
android:layout_gravity="start|top"
android:layout_height="?attr/actionBarSize"
app:contentInsetStartWithNavigation="0dp"
android:background="@color/white" >
<!--圆角图片组件-->
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/note_page_toolbar_icon"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_centerInParent="true"
android:layout_marginRight="20dp"
android:src="@drawable/icon"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/note_page_title"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="20sp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/note_page_summary"
android:textColor="@color/gray"
android:textSize="12sp"
android:layout_marginStart="10dp"
/>
</LinearLayout>
</androidx.appcompat.widget.Toolbar>
<!--引入下拉刷新控件-->
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swiperefreshLayout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize">
<!--下拉刷新的内容-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</FrameLayout>
</LinearLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<!--底部Tab-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_gravity="bottom|start"
android:orientation="vertical"
>
<include
layout="@layout/bottom_nav"
android:visibility="visible" />
</LinearLayout>
<!--FAB悬浮按钮-->
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginEnd="16dp"
android:layout_marginBottom="76dp"
android:src="@drawable/ic_baseline_add_24"
app:backgroundTint="@color/white"
app:elevation="8dp" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
~~~
# 2.1 关于遮罩问题
对于帧布局我们知道,默认都会摆放在布局的左上角,从而产生了遮挡的现象。对于`FrameLayout`布局中我们需要设置控件其位置来做到元素的非重叠,在`CoordinatorLayout`中将有更加高级的做法。在`Material`库中提供的了`AppBarLayout`。`AppBarLayout`实际上是一个垂直方向的`LinearLayout`,它在内部做了很多滚动事件的封装,并应用了一些`Material Design`的设计理念。
但实践的时候感觉没有什么用,这里先不继续。
- 介绍
- UI
- MaterialButton
- MaterialButtonToggleGroup
- 字体相关设置
- Material Design
- Toolbar
- 下拉刷新
- 可折叠式标题栏
- 悬浮按钮
- 滑动菜单DrawerLayout
- NavigationView
- 可交互提示
- CoordinatorLayout
- 卡片式布局
- 搜索框SearchView
- 自定义View
- 简单封装单选
- RecyclerView
- xml设置点击样式
- adb
- 连接真机
- 小技巧
- 通过字符串ID获取资源
- 自定义View组件
- 使用系统控件重新组合
- 旋转菜单
- 轮播图
- 下拉输入框
- 自定义VIew
- 图片组合的开关按钮
- 自定义ViewPager
- 联系人快速索引案例
- 使用ListView定义侧滑菜单
- 下拉粘黏效果
- 滑动冲突
- 滑动冲突之非同向冲突
- onMeasure
- 绘制字体
- 设置画笔Paint
- 贝赛尔曲线
- Invalidate和PostInvalidate
- super.onTouchEvent(event)?
- setShadowLayer与阴影效果
- Shader
- ImageView的scaleType属性
- 渐变
- LinearGradient
- 图像混合模式
- PorterDuffXfermode
- 橡皮擦效果
- Matrix
- 离屏绘制
- Canvas和图层
- Canvas简介
- Canvas中常用操作总结
- Shape
- 圆角属性
- Android常见动画
- Android动画简介
- View动画
- 自定义View动画
- View动画的特殊使用场景
- LayoutAnimation
- Activity的切换转场效果
- 属性动画
- 帧动画
- 属性动画监听
- 插值器和估值器
- 工具
- dp和px的转换
- 获取屏幕宽高
- JNI
- javah命令
- C和Java相互调用
- WebView
- Android Studio快捷键
- Bitmap和Drawable图像
- Bitmap简要介绍
- 图片缩放和裁剪效果
- 创建指定颜色的Bitmap图像
- Gradle本地仓库
- Gradle小技巧
- RxJava+Okhttp+Retrofit构建网络模块
- 服务器相关配置
- node环境配置
- 3D特效