0

我正在使用画廊通过滚动来显示图像。我已经使用getChildStaticTransformation(View child,Transformation t)方法将转换应用于每个图像的每个孩子。

但现在我想使用按钮滚动图像。所以我getChildStaticTransformationonTouch按钮的事件中调用该方法。但图像并没有移动。

代码如下:-

在我使用过的类的构造函数中,

    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;
}

请帮我。

4

2 回答 2

6

您是否尝试在类似的方法中调用invalidate?每次你想更新一个孩子的静态变换时,你需要在各自的孩子上调用 invalidate() 。如果您在单击按钮时仍然无法通过图像移动,您可以按照这个很好的示例,这样您就可以基本了解如何通过单击按钮来浏览图像。如果您可以在实际出错的地方发布您的代码片段,那么我的答案可能会被编辑。希望这可以帮助。getChildStaticTransformation()child.invalidate();

于 2012-12-21T09:53:51.697 回答
0

我找到了解决方案。我使用了 OnFling Method()。

于 2013-01-24T07:06:13.557 回答