如何在自定义视图中使用 Fresco?
How to use Fresco in custom view?
我正在构建一个 canvas 游戏,我直接在 canvas 上绘制图像。
canvas.drawBitmap(bitmap, matrix, paint);
如何使用 Fresco 来加载这些位图?
您的用例可能最好由 using the image pipeline directly 满足,而不是使用 Drawees。
这里最难的部分是你必须自己管理内存,而不是让 Drawee 为你做。按照该页面和文档的下两页("DataSources" 和 "CloseableReferences")上的说明进行操作。
我正在构建一个 canvas 游戏,我直接在 canvas 上绘制图像。
canvas.drawBitmap(bitmap, matrix, paint);
如何使用 Fresco 来加载这些位图?
您的用例可能最好由 using the image pipeline directly 满足,而不是使用 Drawees。
这里最难的部分是你必须自己管理内存,而不是让 Drawee 为你做。按照该页面和文档的下两页("DataSources" 和 "CloseableReferences")上的说明进行操作。