Android Palette为某些图像返回透明色

时间:2017-08-29 11:19:19

标签: android android-asynctask palette

我有一个AsyncTask,它从url加载一个位图,并使用Palette来改变我的Floating Action Button的背景。对于大多数图像,它工作正常,但在某些图像上它使按钮透明。屏幕截图1显示了使用图像中蓝色的按钮颜色,但在屏幕截图2中,按钮的颜色是透明的(即使图像不包含任何透明像素,因为它是一个jpeg)。

    public class ColoredFabTask extends AsyncTask<String , String , String> {
    Context mContext;
    View view;
    private View rootView;
    URL myFileUrl;
    Bitmap imageBitmap = null;

    public ColoredFabTask(Context context, View view) {
        this.mContext = context;
        this.view = view;
    }

    @Override
    protected void onPreExecute() {
    }

    @Override
    protected String doInBackground(String... args) {
        try {
            myFileUrl = new URL(args[0]);
            HttpURLConnection conn = (HttpURLConnection) 
            myFileUrl.openConnection();
            conn.setDoInput(true);
            conn.connect();
            InputStream is = conn.getInputStream();
            imageBitmap = BitmapFactory.decodeStream(is);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(String args) {
        Palette palette  = Palette.from(imageBitmap).generate();
        int vibrant = palette.getVibrantColor(0);
        FloatingActionButton applyButton = (FloatingActionButton) view.findViewById(R.id.applyButton);
        applyButton.setBackgroundTintList(ColorStateList.valueOf(vibrant));
        applyButton.setVisibility(View.VISIBLE);
    }
}

截图:

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

Paletter默认忽略其中的一些颜色。以下是Palette来源的实现:

static final Palette.Filter DEFAULT_FILTER = new Palette.Filter() {
    private static final float BLACK_MAX_LIGHTNESS = 0.05F;
    private static final float WHITE_MIN_LIGHTNESS = 0.95F;

    public boolean isAllowed(int rgb, float[] hsl) {
        return !this.isWhite(hsl) && !this.isBlack(hsl) && !this.isNearRedILine(hsl);
    }

    private boolean isBlack(float[] hslColor) {
        return hslColor[2] <= 0.05F;
    }

    private boolean isWhite(float[] hslColor) {
        return hslColor[2] >= 0.95F;
    }

    private boolean isNearRedILine(float[] hslColor) {
        return hslColor[0] >= 10.0F && hslColor[0] <= 37.0F && hslColor[1] <= 0.82F;
    }
};

如你所见,它迫使调色板忽略一些颜色。 因此,您需要尝试设置自定义文件管理器以允许处理所有颜色

答案 1 :(得分:1)

如果有人想知道如何解决我自己的问题。只需检查样本是否为空。

        Palette palette = Palette.from(imageBitmap).generate();
        int fallbackColor = palette.getDominantColor(0);
        Palette.Swatch vibrantColorSwatch = palette.getVibrantSwatch();
        if (vibrantColorSwatch != null) {
            int vibrantColor = vibrantColorSwatch.getRgb();
            FloatingActionButton applyButton = (FloatingActionButton) view.findViewById(R.id.applyButton);
            applyButton.setBackgroundTintList(ColorStateList.valueOf(vibrantColor));

        }
        else {
            FloatingActionButton applyButton = (FloatingActionButton) view.findViewById(R.id.applyButton);
            applyButton.setBackgroundTintList(ColorStateList.valueOf(fallbackColor));
        }