Both of the followinf calls are not working. Second intoCallback is never executed.
GlidePalette.with(paletteString)
.use(GlidePalette.Profile.MUTED)
.intoBackground(layout);
GlidePalette.with(paletteString)
.use(GlidePalette.Profile.MUTED)
.intoCallBack(
palette -> {
int bgColor = getBackgroundColor(palette);
if (bgColor != -1)
layout.setBackgroundColor(bgColor);
});
Both of the followinf calls are not working. Second intoCallback is never executed.