我在我的Android应用程序中使用了一个封面流程和本教程链接http://www.inter-fuser.com/2010/01/android-coverflow-widget.html,我已经很好地使用了它。但我的问题是当Android版本为4.1时,封面流程semms效果不佳,因为在选择图像后图像没有居中或对齐。但如果Android版本低于4.0,它就像在链接的视频中一样。
有没有人对此问题有所顾虑?
答案 0 :(得分: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;
}
-
我最近遇到了同样的问题。这与已被弃用的Gallery有关。作为替代方案,我使用HorizontalScrollView实现了与此类似的东西,并使用.scrollTo()进行居中。这个解决方案的问题是scrollTo()与View的左侧对齐,所以你必须计算中间y0urself。如果布局填满了屏幕,则您必须在视图的左侧和右侧应用填充,以强制选定的元素到达中心。
谨慎一点。水平滚动视图没有可动画滚动,因此它将成为一种快照行为。您可以通过使用计时器滚动来解决这个问题,但这不是一个非常优雅的解决方案。