我需要更改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
我认为它不起作用,因为它们没有遵循文档中给出的维度。
答案 0 :(得分:0)
您需要返回有效的false
。对于Bitmap
,有必要做更多的事情。您可以使用以下方法:
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;
}