【发布时间】: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>
设计图片:
【问题讨论】:
标签: java android android-studio android-layout