1

我通过本教程链接http://www.inter-fuser.com/2010/01/android-coverflow-widget.html在我的 Android 应用程序中使用封面流程,并且我已经很好地使用了它。但我的问题是,当 Android 版本为 4.1 时,封面流程无法正常工作,因为选择图像后图像没有居中或对齐良好。但是,如果 Android 版本低于 4.0,它就像在链接的视频中一样运行良好。

有人对这个问题有想法吗?

4

1 回答 1

1

更新

解决此问题的方法是进行以下更改getChildStaticTransformation(View child, Transformation t)

protected boolean getChildStaticTransformation(View child, Transformation t) {
                child.invalidate(); // add this line
                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;
        }   

--

我最近遇到了同样的问题。这与画廊已被弃用有关。作为替代方案,我使用 Horizo​​ntalScrollView 并使用 .scrollTo() 实现了与此类似的功能。此解决方案的问题是 scrollTo() 与视图的左侧对齐,因此您必须计算中间的 y0urself。如果布局填满屏幕,您将不得不在视图的左侧和右侧应用填充以强制选定元素居中。

一个警告。水平滚动视图没有动画滚动,因此它将是一种快速行为。您可以通过使用计时器滚动来解决此问题,但这不是一个非常优雅的解决方案。

于 2013-04-04T03:53:57.240 回答