android CoordinatorLayout使用

记下来,以后不用找

app:layout_scrollFlags="scroll"属性是必须的,否则对应的内容不会跟着滑动

app:layout_behavior="@string/appbar_scrolling_view_behavior"也是必须的,表示绑定的控件

 需要注意的是,在AppBarLayout嵌套的CollapsingToolbarLayout的内容是会跟着滑动的,而CollapsingToolbarLayout外AppBarLayout内的是不会跟着滑动的(tvTitle会停留在屏幕顶部),

CoordinatorLayout必须把需要联动滑动的控件包起来,由它来协调滑动
<androidx.coordinatorlayout.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
     >

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:id="@+id/collToolbar"
            app:contentScrim="@color/white"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_scrollFlags="scroll">

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/rcyTop"
                android:layout_width="match_parent"
                android:layout_height="200dp"
          
                android:orientation="horizontal"
           
              
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
            />


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

        <TextView
            android:id="@+id/tvTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="15dp"
            android:layout_marginTop="4dp"
            android:background="#0B091C"
            android:text="@string/ai_discover"
            android:textColor="@color/white"
            android:textSize="22sp"
            android:textStyle="bold"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />


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

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:orientation="vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rcyDiscover"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_marginHorizontal="15dp"
            android:nestedScrollingEnabled="true"
 
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            />
    </androidx.constraintlayout.widget.ConstraintLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

相关推荐

  1. conda使用,pip使用

    2024-03-23 19:08:02       58 阅读
  2. VueUse使用

    2024-03-23 19:08:02       68 阅读
  3. Git<span style='color:red;'>使用</span>

    Git使用

    2024-03-23 19:08:02      60 阅读
  4. netty使用

    2024-03-23 19:08:02       55 阅读
  5. gdb<span style='color:red;'>使用</span>

    gdb使用

    2024-03-23 19:08:02      63 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-23 19:08:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-23 19:08:02       101 阅读
  3. 在Django里面运行非项目文件

    2024-03-23 19:08:02       82 阅读
  4. Python语言-面向对象

    2024-03-23 19:08:02       91 阅读

热门阅读

  1. 安卓的几个核心的组件的简单介绍

    2024-03-23 19:08:02       42 阅读
  2. Linux进程间通信之消息队列

    2024-03-23 19:08:02       47 阅读
  3. 实用网站推荐 [持续更新中...]

    2024-03-23 19:08:02       48 阅读
  4. Qt拖放文件实现(Drag,Drop, MimeData )

    2024-03-23 19:08:02       41 阅读
  5. Leetcode-06-Z字形变换

    2024-03-23 19:08:02       43 阅读
  6. ARM IHI0069F GIC architecture specification (1)

    2024-03-23 19:08:02       35 阅读
  7. Word中文字重叠在一起怎么办

    2024-03-23 19:08:02       43 阅读
  8. 蓝桥杯/ 刷题统计 /c\c++

    2024-03-23 19:08:02       39 阅读