2015-09-28 109 views
2

我需要始终在回滚视图中突出显示中心项目,同时通过向上滚动进行滚动。如何在Android中滚动时放大Recycler查看中心项目?

+1

更新有更具体的问题,你的问题,并添加你有什么至今一些代码。你会因这个问题而退缩,并失去再次提问的能力。 –

+0

这样的东西http://stackoverflow.com/questions/29487382/scale-up-item-in-recyclerview-to-overlaps-2-adjacent-items-android ...我需要突出中心项目在水平回收站查看。是否有任何方法请引导我? – Android

回答

1

您应该遵循此代码,这有助于我在回收视图中放大中心项目。

[![public class CenterZoomLayoutManager extends LinearLayoutManager { 

    private final float mShrinkAmount = 0.15f; 
    private final float mShrinkDistance = 0.9f; 

    public CenterZoomLayoutManager(Context context) { 
     super(context); 
    } 

    public CenterZoomLayoutManager(Context context, int orientation, boolean reverseLayout) { 
     super(context, orientation, reverseLayout); 
    } 


    @Override 
    public int scrollVerticallyBy(int dy, RecyclerView.Recycler recycler, RecyclerView.State state) { 
     int orientation = getOrientation(); 
     if (orientation == VERTICAL) { 
      int scrolled = super.scrollVerticallyBy(dy, recycler, state); 
      float midpoint = getHeight()/2.f; 
      float d0 = 0.f; 
      float d1 = mShrinkDistance * midpoint; 
      float s0 = 1.f; 
      float s1 = 1.f - mShrinkAmount; 
      for (int i = 0; i < getChildCount(); i++) { 
       View child = getChildAt(i); 
       float childMidpoint = 
         (getDecoratedBottom(child) + getDecoratedTop(child))/2.f; 
       float d = Math.min(d1, Math.abs(midpoint - childMidpoint)); 
       float scale = s0 + (s1 - s0) * (d - d0)/(d1 - d0); 
       child.setScaleX(scale); 
       child.setScaleY(scale); 
      } 
      return scrolled; 
     } else { 
      return 0; 
     } 
    } 

    @Override 
    public int scrollHorizontallyBy(int dx, RecyclerView.Recycler recycler, RecyclerView.State state) { 
     int orientation = getOrientation(); 
     if (orientation == HORIZONTAL) { 
      int scrolled = super.scrollHorizontallyBy(dx, recycler, state); 

      float midpoint = getWidth()/2.f; 
      float d0 = 0.f; 
      float d1 = mShrinkDistance * midpoint; 
      float s0 = 1.f; 
      float s1 = 1.f - mShrinkAmount; 
      for (int i = 0; i < getChildCount(); i++) { 
       View child = getChildAt(i); 
       float childMidpoint = 
         (getDecoratedRight(child) + getDecoratedLeft(child))/2.f; 
       float d = Math.min(d1, Math.abs(midpoint - childMidpoint)); 
       float scale = s0 + (s1 - s0) * (d - d0)/(d1 - d0); 
       child.setScaleX(scale); 
       child.setScaleY(scale); 
      } 
      return scrolled; 
     } else { 
      return 0; 
     } 

    } 
} 

中心水平视图 enter image description here

相关问题