CollapsingToolbarLayout 折叠时隐藏 TextView,展开时显示

Hide TextView when CollapsingToolbarLayout is Collapsed, and show it when expanded

我正在开发一个使用 CollapsingToolbarLayout 的应用程序,其中有一个 ImageView。我想在它上面添加一个渐变以看起来更好并且能够更好地阅读 CollapsingToolBar 标题,所以我做了一些修改并添加了一个带有文本视图的相对布局,然后我为同一个 TextView 添加了背景(这就是我所说的梯度)。这样做的问题是,当 ToolBar 折叠时,渐变仍然显示在它上面,我不希望它发生,当 ToolBar 折叠时如何让它不可见?

设计:

<?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"
    tools:context=".anime_page">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="450dp"
        android:fitsSystemWindows="true">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|snap|exitUntilCollapsed"
            app:collapsedTitleTextAppearance="@style/collapsedToolbarLayoutTitleColor"
            app:expandedTitleTextAppearance="@style/expandedToolbarLayoutTitleColor"
            android:theme="@style/Theme.AnimeWatcher"
            android:id="@+id/anime_page_collapsing_toolbar">

            <ImageView
                android:id="@+id/anime_page_cover"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                app:layout_collapseMode="parallax" />
            
            <androidx.appcompat.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin" >

                <ImageView
                    android:id="@+id/anime_page_back"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/ic_baseline_arrow_back_24"
                    android:paddingEnd="10dp" />

            </androidx.appcompat.widget.Toolbar>

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="100dp"
                    android:layout_alignParentBottom="true"
                    android:background="@drawable/black_gradient" />

            </RelativeLayout>


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

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

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/anime_page_rcv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">


    </androidx.recyclerview.widget.RecyclerView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

设计图片:

ToolBar Expanded

ToolBar Collapsed

OnOffsetChangedListener 添加到 AppBar 并收听折叠或展开时的变化,hide/show 您的 TextView 基于此。

将 ID 添加到应用栏

<com.google.android.material.appbar.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="450dp"
    android:fitsSystemWindows="true">

然后,访问 AppBar 并添加一个 OnOffsetChangedListener 作为

appbar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {

    @Override
    public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
        float percentage = (float) Math.abs(verticalOffset) / appBarLayout.getTotalScrollRange();
        if (Math.abs(verticalOffset) == appBarLayout.getTotalScrollRange()) {
            //  Collapsed
            //Hide your TextView here
            tv.setVisibility(View.GONE);
        } else if(verticalOffset == 0) {
            //Expanded
            //Show your TextView here
            tv.setVisibility(View.VISIBLE);
        } else {
            //In Between
            tv.setVisibility(View.VISIBLE);
            tv.animate().alpha(percentage);
    }
});

您可以选择只玩 alpha 属性 而不是 visibility,这取决于您。