"Chrome custom tab" 支持 VectorDrawable 吗?
Does "Chrome custom tab" support VectorDrawable?
我使用 "chrome custom tab"(cct) 并且一切都在运行 O.K。
但是,如果我想将 "actions" 添加到 buildIn 工具栏,则 cct 仅适用于 drawable 目录下的旧 "png" 文件。我已经切换到使用矢量资产来生成矢量可绘制对象并通过使用矢量可绘制对象兼容来完成所有事情,似乎 cct 无法使用它,对吗?
谢谢谁能给我解答
遗憾的是 Chrome 自定义选项卡仅支持位图格式,如 platform_frameworks_support 存储库中所述:
/**
* Key that specifies the {@link Bitmap} to be used as the image source for the action button.
* The icon should't be more than 24dp in height (No padding needed. The button itself will be
* 48dp in height) and have a width/height ratio of less than 2.
*/
public static final String KEY_ICON = "android.support.customtabs.customaction.ICON";
我使用 "chrome custom tab"(cct) 并且一切都在运行 O.K。
但是,如果我想将 "actions" 添加到 buildIn 工具栏,则 cct 仅适用于 drawable 目录下的旧 "png" 文件。我已经切换到使用矢量资产来生成矢量可绘制对象并通过使用矢量可绘制对象兼容来完成所有事情,似乎 cct 无法使用它,对吗?
谢谢谁能给我解答
遗憾的是 Chrome 自定义选项卡仅支持位图格式,如 platform_frameworks_support 存储库中所述:
/** * Key that specifies the {@link Bitmap} to be used as the image source for the action button. * The icon should't be more than 24dp in height (No padding needed. The button itself will be * 48dp in height) and have a width/height ratio of less than 2. */ public static final String KEY_ICON = "android.support.customtabs.customaction.ICON";