用户向下滚动屏幕后, CollapsingToolbarLayout 中的图像消失,并留下一个带有后退按钮,内容标题和设置菜单的工具栏。我想知道如何更改该工具栏的背景颜色,只有当它处于“折叠”状态时才能更改。状态。
我所指的动作类似于工具栏背景颜色变为绿色的动作:
在CollapsingToolbarLayout下方,我有 NestedScrollView CardViews
答案 0 :(得分:77)
我认为你是在app:contentScrim
之后。
<android.support.design.widget.CollapsingToolbarLayout
...
app:contentScrim="?attr/colorPrimary">
<!-- Toolbar and ImageView here -->
</android.support.design.widget.CollapsingToolbarLayout>
答案 1 :(得分:12)
首先删除
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));
}
}
});
答案 2 :(得分:5)
只需使用CollapsingToolbarLayout
XML属性contentScrim
在Toolbar
模式下设置collapsed
背景色。
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>
希望这会有所帮助〜
答案 3 :(得分:1)
也许您一直在寻找这个:
myCollapsingToolbar.setContentScrimColor(getResources().getColor(R.color.my_color_id));
它为我工作,并且在折叠后改变了collapsingToolbar的颜色,以帮助我适应在collapsingToolbar满刻度时显示的图像的主要颜色。这样,就可以通过编程方式明显地改变颜色!
我知道我来晚了,但我希望它能对您有所帮助。
答案 4 :(得分: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))
}
}
答案 5 :(得分:-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));
}
}
});