我有以下代码片段,它使用画布的当前转换矩阵转换一组边界。
final RectF bounds = renderer.computeBounds
activeCanvas.getMatrix().mapRect(result, bounds);
return bounds;
但是,对于最新的 API 级别 (16),我收到一条警告说明
The method getMatrix() from the type Canvas is deprecated
正如API 16 Diff Specification所确认的那样。
这很好,但是Canvas.getMatrix()上的当前文档没有提到弃用,也没有提供替代方案。作为一种解决方法,我现在只是取消了这个警告,但我真的很想知道新的和改进的(tm)方法是什么样的。