我正在使用Facebook 的 Rebound 库来复制在他们的聊天头实现中看到的有弹性的动画。问题是,大多数时候动画都会卡顿。几张图片可以更好地解释这一点。这是黄油般流畅的聊天头动画:
这是我的尝试(注意白色动画View
几乎跳过所有帧):
偶尔它会顺利运行:
下面是我目前正在使用的代码(如果你想快速设置,整个项目都在 Github上)。我猜这与我的View
. Spring
my中有 2 个SpringSystem
,一个用于“气泡”(Android 图标),另一个用于内容(View
点击气泡时显示的白色)。任何有关如何解决此问题的帮助将不胜感激。谢谢。
AndroidManifest.xml
:
<application android:hardwareAccelerated="true" ...>
...
</application>
AppService.java
:
// the following code is in AppService#onCreate()
// AppService extends android.app.Service
// full code at https://github.com/vickychijwani/BubbleNote
mContent.setLayerType(View.LAYER_TYPE_HARDWARE, null);
final Spring bubbleSpring = system.createSpring();
bubbleSpring.setCurrentValue(1.0);
bubbleSpring.addListener(new SpringListener() {
@Override
public void onSpringUpdate(Spring spring) {
float value = (float) spring.getCurrentValue();
params.x = (int) (mPos[0] * value);
params.y = (int) (mPos[1] * value);
mWindowManager.updateViewLayout(mBubble, params);
// fire the second animation when this one is about to end
if (spring.isOvershooting() && contentSpring.isAtRest()) {
contentSpring.setEndValue(1.0);
}
}
// ...
});
final Spring contentSpring = system.createSpring();
contentSpring.setCurrentValue(0.0);
contentSpring.addListener(new SpringListener() {
@Override
public void onSpringUpdate(Spring spring) {
// always prints false?!
Log.d(TAG, "hardware acc = " + mContent.isHardwareAccelerated());
float value = (float) spring.getCurrentValue();
// clamping is required to prevent flicker
float clampedValue = Math.min(Math.max(value, 0.0f), 1.0f);
mContent.setScaleX(value);
mContent.setScaleY(value);
mContent.setAlpha(clampedValue);
}
// ...
});