【问题标题】:Hide TextView when CollapsingToolbarLayout is Collapsed, and show it when expandedCollapsingToolbarLayout 折叠时隐藏TextView,展开时显示
【发布时间】:2021-05-29 19:36:24
【问题描述】:

我正在使用 CollapsingToolbarLayout 开发一个应用程序,其中包含一个 ImageView。我想在它上面添加一个渐变看起来更好看并且能够更好地阅读 CollapsingToolBar 标题,所以我做了一点修改并添加了一个相对布局,里面有一个 textview,然后我添加了一个背景到同一个 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

【问题讨论】:

    标签: java android android-studio android-layout


    【解决方案1】:

    OnOffsetChangedListener 添加到AppBar 并在其折叠或展开时收听更改,并据此隐藏/显示您的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,这取决于您。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-10-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-02-09
      相关资源
      最近更新 更多