View、Window、WindowManager---Choreographer

转载
Android Project Butter分析
Android 之 Choreographer 详细分析
Android图形系统(十一)-Choreographer
Choreographer原理

涉及到的函数

1. postCallback(int callbackType, Runnable action, Object token)
1. postCallback

当收到VSYNC信号时, postCallback会被调用, callbackType有三种类型:

CALLBACK_INPUT:     优先级最高, 和输入事件处理有关
CALLBACK_ANIMATION: 优先级其次, Animation的处理有关
CALLBACK_TRAVERSAL: 优先级最低, 和UI等控件绘制有关

你可能感兴趣的:(View、Window、WindowManager---Choreographer)