我正在尝试使用机器人材料设计的调色板功能,但我在应用它时遇到了一些麻烦。
我已经成功地生成了调色板,现在我正试图将调色板传递到一个应用它的函数中
我遇到的问题是,当我将调色板传递给applyPalette
函数时,像palette.getDarkMutedColor().getRgb() , palette.getVibrantColor().getRgb()
这样的方法都没有用调色板中的值填充。
我正在学习的教程除了将调色板传递给函数之外,没有提到任何其他内容,在这样做的过程中,方法将被填充
这是生成器函数和应用函数,有人能理解为什么这不起作用吗?
代码
private void colorize(Bitmap photo) {
Palette palette = new Palette.Builder(photo).generate();
applyPalette(palette);
}
private void applyPalette(Palette palette) {
getWindow().setBackgroundDrawable(new ColorDrawable(palette.getDarkMutedColor().getRgb()));
TextView titleView = (TextView) findViewById(R.id.title);
titleView.setTextColor(palette.getVibrantColor().getRgb());
TextView descriptionView = (TextView) findViewById(R.id.description);
descriptionView.setTextColor(palette.getLightVibrantColor().getRgb());
colorRipple(R.id.info, palette.getDarkMutedColor().getRgb(),
palette.getDarkVibrantColor().getRgb());
colorRipple(R.id.star, palette.getMutedColor().getRgb(),
palette.getVibrantColor().getRgb());
View infoView = findViewById(R.id.information_container);
infoView.setBackgroundColor(palette.getLightMutedColor().getRgb());
AnimatedPathView star = (AnimatedPathView) findViewById(R.id.star_container);
star.setFillColor(palette.getVibrantColor().getRgb());
star.setStrokeColor(palette.getLightVibrantColor().getRgb());
}
使用picassopattee第三方库并将其导入到您的项目中,然后使用以下代码:
try {
ContextWrapper cw = new ContextWrapper(OtherUserProfileScreenActivity.this);
Picasso.with(this).load(image + ".jpg").placeholder(R.drawable.ic_loading).error(R.drawable.ic_error).into(imageView, PicassoPalette.with(Image + ".jpg", imageView).use(PicassoPalette.Profile.MUTED_DARK).intoCallBack(new BitmapPalette.CallBack() {
@Override
public void onPaletteLoaded(Palette palette) {
int mutedColor = palette.getMutedColor(R.attr.colorPrimary);
mCollapsingToolbarLayout.setContentScrimColor(mutedColor);
}
}));
} catch (OutOfMemoryError e) {
e.printStackTrace();
System.gc();
}
您已经尝试过同步方式。所以我认为下面的代码将解决您的问题(以异步方式)。
private void colorize(Bitmap photo) {
Palette.from(photo).generate(new Palette.PaletteAsyncListener() {
@Override
public void onGenerated(Palette palette) {
applyPalette(palette);
}
});
}
从文档中,您从Palette
使用的所有调用都已返回RGB值,但需要传递默认颜色。也许你是想用那些返回色样的?例如,与其执行palette.getVibrantColor().getRgb()
,不如执行palette.getVibrantSwatch().getRgb()
。将所有getColor调用替换为相应的getSwatch()调用。
此外,请确保导入中有import android.support.v7.graphics.Palette
,并且依赖项中包含compile 'com.android.support:palette-v7:22.1.0'
。版本22.1.0是您使用Palette.Builder
时的最低版本。
首先我不知道为什么在编写时没有出现错误
palette.getVibrantColor().getRgb()
我认为您没有出错,所以您一定在使用旧库。与更新的一样,它接受一个参数作为默认颜色值。提取RGB更好的方法是获取Palette.Swatch
对象并获取RGB值。我确实创建了一个简单的小应用程序来演示如何使用改进的库,你可以在这里查看。希望这能有所帮助。