来自java api的BufferStrategy:
an application draws to a single back buffer and then moves the contents to the front
(display) in a single step, either by copying the data or moving the video pointer. Moving
the video pointer exchanges the buffers so that the first buffer drawn becomes the front
buffer, or what is currently displayed on the device;
我正在寻找类似Java BufferStrategy
的东西放入我的Android应用程序来平滑一些动画的移动。相当于什么?目前动画看起来很糟糕。
如果不存在这样的等价物,那么做平滑动画的正确方法是什么?