49

用户向下滚动屏幕后,CollapsingToolbarLayout中的图像消失,并留下带有返回按钮、内容标题和设置菜单的工具栏。我想知道如何仅在该工具栏处于“折叠”状态时更改其背景颜色。

我所指的操作类似于工具栏背景颜色变为绿色的操作:

在此处输入图像描述

在 CollapsingToolbarLayout 下面我有一个带有CardViewsNestedScrollView

4

6 回答 6

105

我想你在追求app:contentScrim

<android.support.design.widget.CollapsingToolbarLayout
    ...
    app:contentScrim="?attr/colorPrimary">
    <!-- Toolbar and ImageView here -->
</android.support.design.widget.CollapsingToolbarLayout>
于 2015-06-03T12:06:41.090 回答
13

首先删除

app:contentScrim="?attr/colorPrimary"> 

来自 CollapsingToolbarLayout

添加库

compile 'com.android.support:palette-v7:23.2.1'

并在java代码中添加以下代码

    Bitmap bitmap = BitmapFactory.decodeResource(getApplicationContext().getResources(), R.drawable.ny);
    Palette.generateAsync(bitmap,
            new Palette.PaletteAsyncListener() {
                @Override
                public void onGenerated(Palette palette) {
                    Palette.Swatch vibrant =
                            palette.getVibrantSwatch();
                    int mutedColor = palette.getVibrantSwatch().getRgb();
                    if (vibrant != null) {
                        // If we have a vibrant color
                        // update the title TextView
                        collapseToolbar.setBackgroundColor(mutedColor);
                        //  mutedColor = palette.getMutedColor(R.attr.colorPrimary);
                        collapseToolbar.setStatusBarScrimColor(palette.getDarkMutedColor(mutedColor));
                        collapseToolbar.setContentScrimColor(palette.getMutedColor(mutedColor));

                    }
                }
            });
于 2016-04-04T09:34:48.473 回答
8

只需在模式下使用CollapsingToolbarLayoutXML 属性contentScrim设置背景颜色。Toolbarcollapsed

app:contentScrim="YOUR_TOOLBAR_COLOR"

这是一个例子:

<android.support.design.widget.CollapsingToolbarLayout
    android:id="@+id/collapsing_toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    app:contentScrim="?attr/colorPrimary"
    app:layout_scrollFlags="scroll|exitUntilCollapsed">

    <ImageView
        android:id="@+id/img_group_photo"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:scaleType="centerCrop"
        app:layout_collapseMode="parallax" />

    <android.support.v7.widget.Toolbar
        android:id="@+id/anim_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>

希望这会有所帮助~

于 2017-03-23T14:27:35.503 回答
4

也许您一直在寻找的是:

myCollapsingToolbar.setContentScrimColor(getResources().getColor(R.color.my_color_id));

它对我有用,并在 collapsingToolbar 折叠后更改它的颜色,以帮助我适应 collapsingToolbar 全尺寸时显示的图像的主要颜色。有了这个,颜色显然可以通过编程来改变!

我知道我迟到了,但我希望它可以帮助。

于 2018-09-02T22:18:53.180 回答
0

您可以使用AppBarLayout的偏移量侦听器并CollapsingTollbar根据所需的行为更改属性。

appBarLayout.addOnOffsetChangedListener { _, verticalOffSet ->
            if (Math.abs(verticalOffSet) == appBarLayout.totalScrollRange) {
                //Collapsed
                toolBar.setBackgroundDrawable(ContextCompat.getDrawable(this,
                        R.drawable.last_revolut_gradient))
            } else {
                //Expanded
                toolBar.setBackgroundColor(ContextCompat.getColor(this,
                        android.R.color.transparent))
            }
        }
于 2018-06-08T00:31:36.087 回答
-1
    Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
            R.drawable.header);

    Palette.from(bitmap).generate(new Palette.PaletteAsyncListener() {
        @SuppressWarnings("ResourceType")

        @Override
        public void onGenerated(Palette palette) {
            Palette.Swatch vibrant =
                    palette.getVibrantSwatch();

            if (vibrant != null) {

                collapsingToolbar.setBackgroundColor(getResources().getColor(R.color.cpb_blue));
                collapsingToolbar.setStatusBarScrimColor(getResources().getColor(R.color.cpb_blue));
                collapsingToolbar.setContentScrimColor(getResources().getColor(R.color.cpb_blue));

            }
        }

    });
于 2017-12-04T07:40:56.280 回答