android技术

CoordinatorLayout的基本使用

2021-05-08  本文已影响0人  拖小壳儿

本文参考文章

CoordinatorLayout 学习(一) - CoordinatorLayout的基本使用

AppBarLayout中的五种ScrollFlags使用方式汇总

1. 概述

本文主要介绍CoordinatorLayout的基本使用,主要是介绍CoordinatorLayoutAppBarLayout的搭配使用。 和CollapsingToolbarLayout 的属性

2. AppBarLayout

AppBarLayout继承自LinearLayout
默认有CoordinatorLayoutlayout_behavior属性,所以能实现各种效果
其直接子控件可以设置layout_scrollFlags属性,不同的效果就自己去试吧,实践才是王道

在正式介绍AppBarLayout的使用时,我们先来看看几个Flag,这几个FlagAppBarLayout里面非常的重要。

属性值 效果(app:layout_scrollFlags="")
scroll 设置这个Flag,表示该View参与联动。
snap 必须scroll组合使用,该Flag表示View拥有吸附功能。当我们松开手指时,Child View要么向上全部滚出屏幕,要么向下全部滚进屏幕
enterAlways 必须scroll组合使用,滑出屏幕还是滑进屏幕,该View都能立即响应滑动事件,跟随滑动。比如说,如果该View是折叠的,当RecyclerView向下滑动时,该View随时都能跟随展开;
enterAlwaysCollapsed 必须scroll组合使用,向下滚动的时候,优先将AppBarLayout中的childView滚动到它的最小高度,滚动完成之后scrollview才开始自身的滚动,当scrollview滚动完成时,这个时候childView才会将自己高度完全滚动进入屏幕;
exitUntilCollapsed 必须scroll组合使用,这里也涉及到最小高度。发生向上滚动事件时,Child View向上滚动退出直至最小高度,
snapMargins 必须scroll组合使用,这个 View 将会被 snap 到它的顶部外边距和它的底部外边距的位置,而不是这个 View 自身的上下边缘。

如果使用了其他值,必定要使用scroll值才能起作用 ,否则这个直接子view将失去作用;
使用方式

3.CollapsingToolbarLayout

app:contentScrim Toolbar显示时的背景色
app:scrimVisibleHeightTrigger 滚动到多高开始变色
app:collapsedTitleTextAppearance 折叠式显示的文本样式
app:expandedTitleTextAppearance 展开时显示的文本样式
app:toolbarId 关联的Toolbar的ID

android.support.v7.widget.Toolbar

layout_collapseMode 折叠模式,pin是随着往上滚动,parallax时要结合layout_collapseParallaxMultiplier=“0.5”,上下都往中间收缩。
app:title Toolbar显示文本
app:navigationIcon 导航图标
————————————————

接下来,我们再来看一下CollapsingToolbarLayoutCollapsingToolbarLayout主要是实现折叠布局的,配合Toolbar使用。
首先,我们来看看CollapsingToolbarLayout的几个Flag:

名称 作用 (app:layout_collapseMode="")
parallax 设置该FlagView会跟内容滚动,可以通过setParallaxMultiplier方法来设置视图差比率,其中0表示毫无视图差,完全跟内容滚动同步;1表示View完全不动。默认的视图差为0.5。
pin CollapsingToolbarLayout完全收缩之后,设置该FlagView会保留在屏幕当中。
none 默认值,表示View不会有任何属性

CollapsingToolbarLayout折叠到最顶端时,会处于最上层,包括toolbar在内,所有的布局都会被他盖住,显示不出来,或者可以设置一个透明的背景显示下面的内容

AppBarLayout中的ScrollFlags使用方式汇总
scroll

scroll
scroll|snap
scroll|snap
scroll|enterAlways
scroll|enterAlways
scroll | enterAlways | enterAlwaysCollapsed
scroll | enterAlways | enterAlwaysCollapsed

scroll | exitUntilCollapsed

scroll | exitUntilCollapsed
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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"
    android:fitsSystemWindows="false"
    tools:context=".tanDian.merchant.tmine.MerchantMineFragment">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:layout_behavior=".view.AppBarLayoutBehavior"
        app:elevation="0dp">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white"
            android:fitsSystemWindows="false"
            android:minHeight="@dimen/toolBarSize"
            app:expandedTitleGravity="center"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:expandedTitleTextAppearance="@style/TitleTheme"
            app:titleEnabled="true">
            <androidx.appcompat.widget.Toolbar
                android:id="@+id/tool_bar"
                android:layout_width="match_parent"
                android:layout_height="@dimen/toolBarSize"
                app:titleTextAppearance="@style/TitleTheme"
                />
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                app:layout_collapseMode="parallax"
                >

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="180dp"
                    android:scaleType="fitXY"
                    android:src="@mipmap/mine_head"
                    app:layout_scrollFlags="scroll" />
                <ImageView
                    android:id="@+id/user_avatar"
                    android:layout_width="70dp"
                    android:layout_height="70dp"
                    tools:src="@mipmap/logo"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="20dp"/>
                <androidx.cardview.widget.CardView
                    android:layout_width="match_parent"
                    android:layout_height="82dp"
                    android:layout_marginStart="10dp"
                    android:layout_marginTop="150dp"
                    android:layout_marginEnd="10dp"
                    android:layout_marginBottom="5dp"
                    app:cardCornerRadius="7dp"
                    app:cardElevation="3dp"
                    app:layout_scrollFlags="scroll">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:background="@color/white">

                        <LinearLayout
                            android:id="@+id/tab_dingdan_view"
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center"
                            android:orientation="vertical">

                            <ImageView
                                android:layout_width="40dp"
                                android:layout_height="40dp"
                                android:src="@mipmap/mine_page_content_dingdan" />

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginTop="6dp"
                                android:text="订单"
                                android:textColor="@color/merchantBlack"
                                android:textSize="11sp" />
                        </LinearLayout>

                        <LinearLayout
                            android:id="@+id/tab_collect_view"
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center"
                            android:orientation="vertical">

                            <ImageView
                                android:layout_width="40dp"
                                android:layout_height="40dp"
                                android:src="@mipmap/mine_page_content_shoucang" />

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginTop="6dp"
                                android:text="收藏"
                                android:textColor="@color/merchantBlack"
                                android:textSize="11sp" />
                        </LinearLayout>

                        <LinearLayout
                            android:id="@+id/tab_wallet_view"
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center"
                            android:orientation="vertical">

                            <ImageView
                                android:layout_width="40dp"
                                android:layout_height="40dp"
                                android:src="@mipmap/mine_page_content_qianbao" />

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginTop="6dp"
                                android:text="钱包"
                                android:textColor="@color/merchantBlack"
                                android:textSize="11sp" />
                        </LinearLayout>
                    </LinearLayout>
                </androidx.cardview.widget.CardView>
            </RelativeLayout>


        </com.google.android.material.appbar.CollapsingToolbarLayout>


    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <LinearLayout
                android:id="@+id/item_1"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <ImageView

                    android:layout_width="16dp"
                    android:layout_height="16dp"
                    android:layout_marginStart="28dp"
                    android:src="@mipmap/mine_comment" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="7dp"
                    android:layout_marginEnd="28dp"
                    android:drawableEnd="@mipmap/item_next"
                    android:text="我的评论"
                    android:textColor="@color/merchantBlack"
                    android:textSize="@dimen/sp12" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/item_2"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <ImageView
                    android:layout_width="16dp"
                    android:layout_height="16dp"
                    android:layout_marginStart="28dp"
                    android:src="@mipmap/mine_info" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="7dp"
                    android:layout_marginEnd="28dp"
                    android:drawableEnd="@mipmap/item_next"
                    android:text="个人中心"
                    android:textColor="@color/merchantBlack"
                    android:textSize="@dimen/sp12" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/item_3"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <ImageView
                    android:layout_width="16dp"
                    android:layout_height="16dp"
                    android:layout_marginStart="28dp"
                    android:src="@mipmap/mine_service" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="7dp"
                    android:layout_marginEnd="28dp"
                    android:drawableEnd="@mipmap/item_next"
                    android:text="客服中心"
                    android:textColor="@color/merchantBlack"
                    android:textSize="@dimen/sp12" />
            </LinearLayout>
            <TextView
                android:id="@+id/merchant_mobile_tv"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textSize="@dimen/sp10"
                android:textColor="@color/merchantGray"
                tools:text="客服电话:18205999999"
                android:layout_marginTop="28dp"/>
        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>
上一篇下一篇

猜你喜欢

热点阅读