仅更新视图的一部分而不使用失效(Rect)



在我当前的应用程序中,我正在使用 invalidate(Rect( 来更新当前视图的一部分,但从 API 28 开始,此方法已被弃用。
所以我的问题是:

1.有没有其他方法可以只更新视图的一部分?
2.使用已弃用的方法会产生什么后果?

根据 android 文档,只需调用invalidate()方法,因为重绘区域是在内部计算的。

从查看文档This method was deprecated in API level 28. The switch to hardware accelerated rendering in API 14 reduced the importance of the dirty rectangle. In API 21 the given rectangle is ignored entirely in favor of an internally-calculated area instead. Because of this, clients are encouraged to just call invalidate().

将来可能会删除已弃用的方法,发生这种情况时,应用程序可能无法编译。所以最好不要使用它们:)

相关内容

  • 没有找到相关文章

最新更新