gpt4 book ai didi

java - 从我的 CollapsingToolbarLayout 更改颜色

转载 作者:行者123 更新时间:2023-11-29 06:57:12 25 4
gpt4 key购买 nike

我正在尝试根据 Material Design 规则制作 CollapsingToolbar 动画。一切都很好,但让我心碎的是一件事。我试图在滚动我的回收站 View 时更改折叠工具栏的颜色,但我得到的透明颜色总是一样的......

这是我的 xml 代码:

<android.support.design.widget.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="256dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:fitsSystemWindows="true"
android:background="@color/gps_friends_green_main"
app:contentScrim="@color/gps_friends_green_main"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">
<ImageView
android:id="@+id/imgHeader"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />

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

</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

这是我的 Java 代码

int mutedColor = R.color.gps_friends_green_main;

Palette.generateAsync(bitmap,
new Palette.PaletteAsyncListener() {
@Override
public void onGenerated(Palette palette) {
Palette.Swatch vibrant =
palette.getVibrantSwatch();

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(R.color.gps_friends_green_main));
collapseToolbar.setContentScrimColor(palette.getMutedColor(R.color.gps_friends_green_main));

}
}
});

其中 gps_friend_main_color 是 <color name="gps_friends_green_main">#1abc9c</color>

这是我折叠工具栏的结果:

enter image description here

我想改变这种深蓝色,但找不到方法。我有点绝望,但希望能在这里找到答案。谢谢。

最佳答案

您更改颜色的代码是正确的。你只需要删除

app:contentScrim="@color/gps_friends_green_main"

在你的“android.support.design.widget.CollapsingToolbarLayout”中,它应该可以工作。

关于java - 从我的 CollapsingToolbarLayout 更改颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32260913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com