Janbin Qi

Results 2 issues of Janbin Qi

**已经过测试验证**。P268 页中提到 View 动画,scale、rotate的pivotX、pivotY轴心点默认都为0,而不是view的中心点。 **RotateAnimation 的构造函数** ``` java public RotateAnimation(float fromDegrees, float toDegrees) { mFromDegrees = fromDegrees; mToDegrees = toDegrees; // 默认为0.0,也就是view的左上点坐标 mPivotX = 0.0f; mPivotY = 0.0f; } ```...

hi, omerjerk Recently, I am doing a project to get graphics data through the mobile phone camera, and then use processing to render it. But I use your API, and...