Android Cover Flow画廊并删除之间的空间

时间:2013-12-14 12:02:22

标签: android image-gallery coverflow

我想实现封面流程视图,如下图所示。 我也尝试了封面流程,但是无法在图像中显示完美的视图。减少项目之间的空间。 enter image description here

 this.fancyCoverFlow.setSpacing(-90); 

我试过这条线并且它的工作但是其他问题发生如下图所示左右不同的规格。 并且从左向右滚动工作正常,但不能以正确的方式从右向左滚动。

enter image description here

更新Try with this code

5 个答案:

答案 0 :(得分:3)

嘿,你可以尝试:FancyCoverFlowandroid-coverflow-widget

答案 1 :(得分:2)

https://github.com/davidschreiber/FancyCoverFlow

这应该对你想要达到的目标有所帮助。

答案 2 :(得分:1)

如果您使用FancyCoverFlow实现图库,则可以使用this.fancyCoverFlow.setSpacing(-90); -90可能会修改

答案 3 :(得分:0)

使用

this.fancyCoverFlow.setUnselectedAlpha(1.0f);
this.fancyCoverFlow.setActionDistance(FancyCoverFlow.ACTION_DISTANCE_AUTO);
this.fancyCoverFlow.setUnselectedScale(0.75f);

在您的代码中,我希望这会对您有所帮助。

答案 4 :(得分:0)

我也遇到同样的问题,请在代码(FancyCoverFlow.java)文件中使用以下代码。

private void initialize()  {
this.transformationCamera = new Camera();
this.setSpacing(-200); // specifies space between images. }

就我而言,我使用FancyCoverFlow扩展了Gallery。