其他分享
首页 > 其他分享> > android-setCloseButtonIcon(位图可绘制)不适用于ChromeCustomTab中的SVG

android-setCloseButtonIcon(位图可绘制)不适用于ChromeCustomTab中的SVG

作者:互联网

我需要在ChromeCustomTab Android中更改默认的跨图标,请使用以下代码使用后图标进行更改:

Bitmap icon = BitmapFactory.decodeResource(context.getResources(),R.drawable.ic_arrow_back_white_24dp);

它与PNG兼容,但与SVG兼容.

根据本文档,我们必须根据本文档维护图像的大小.

https://developer.android.com/reference/android/support/customtabs/CustomTabsIntent.html#KEY_ICON

我认为这是行不通的,因为他们没有遵循文档中给出的尺寸.

解决方法:

您需要返回一个有效的位图.对于VectorDrawable,有必要做更多的事情.您可以使用以下方法:

private static Bitmap bitmapFromDrawable(Context context, int drawableId) {
    Drawable drawable = ContextCompat.getDrawable(context, drawableId);
    if (drawable instanceof VectorDrawable) {
        return bitmapFromVectorDrawable((VectorDrawable) drawable);
    }
    return ((BitmapDrawable) drawable).getBitmap();
}

@TargetApi(Build.VERSION_CODES.LOLLIPOP)
private static Bitmap bitmapFromVectorDrawable(VectorDrawable vectorDrawable) {
    Bitmap bitmap = Bitmap.createBitmap(vectorDrawable.getIntrinsicWidth(), vectorDrawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap);
    vectorDrawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
    vectorDrawable.draw(canvas);
    return bitmap;
}

然后您可以像这样使用它:

builder.setCloseButtonIcon(bitmapFromDrawable(this, R.drawable. ic_arrow_back_white_24dp));

标签:android-bitmap,chrome-custom-tabs,android,androidsvg
来源: https://codeday.me/bug/20191012/1902564.html