我正在使用画廊通过滚动来显示图像。我已经使用getChildStaticTransformation(View child,Transformation t)
方法将转换应用于每个图像的每个孩子。
但现在我想使用按钮滚动图像。所以我getChildStaticTransformation
从onTouch
按钮的事件中调用该方法。但图像并没有移动。
代码如下:-
在我使用过的类的构造函数中,
this.setStaticTransformationsEnabled(true);
所以当我滚动屏幕时,下面的方法会自行触发。但我现在想在按钮单击时使用该方法。我尝试在按钮单击中显式调用此方法,但它不起作用。
protected boolean getChildStaticTransformation(View child, Transformation t) {
final int childCenter = getCenterOfView(child);
final int childWidth = child.getWidth();
int rotationAngle = 0;
t.clear();
t.setTransformationType(Transformation.TYPE_MATRIX);
if (childCenter == mCoveflowCenter) {
transformImageBitmap((ImageView) child, t, 0);
} else {
rotationAngle = (int) (((float) (mCoveflowCenter - childCenter) / childWidth) * mMaxRotationAngle);
if (Math.abs(rotationAngle) > mMaxRotationAngle) {
rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle
: mMaxRotationAngle;
}
transformImageBitmap((ImageView) child, t, rotationAngle);
}
return true;
}
请帮我。