RecyclerView实现终极画廊效果 中间突出并且压住两侧布局

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RecyclerView实现终极画廊效果 中间突出并且压住两侧布局相关的知识,希望对你有一定的参考价值。

先给大家上个gif 要不然下面很枯燥

忘记原来在哪里看到了.....

 

技术分享

 

这个效果我找了NNNNNN长时间,,,我认为凭我现在的能力 写出来需要好久 所以 退而求其次找大神写好的...

你们不要小看了这个  我整整找了三四天才找到这个一个符合的(就一个 我的苍天)

废话不多说直接上代码

step 1

添加依赖 (不要问我在哪里添加)

compile‘com.azoft.carousellayoutmanager:carousel:1.2.1‘

 

技术分享

 

step 2

布局 就用系统的就可以

 

技术分享

step 3

adapter 配置  (正常写你自己的逻辑  跟这些都没关系  主要就是layoutmanage)

 

技术分享

 

step 4

activity配置  

 

技术分享

initRecyclerView()方法内容 ------关键地方
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

 

技术分享

//实现zoom效果

// enable zoom effect. this line can be customized

layoutManager.setPostLayoutListener(newCarouselZoomPostLayoutListener());

layoutManager.setMaxVisibleItems(2);

recyclerView.setLayoutManager(layoutManager);

//固定item大小

// we expect only fixed sized item for now

recyclerView.setHasFixedSize(true);

// sample adapter with random data

recyclerView.setAdapter(adapter);

//实现中间item滚动

// enable center post scrolling

recyclerView.addOnScrollListener(newCenterScrollListener());

 

 

//item滑动监听

DefaultChildSelectionListener.initCenterItemListener(newDefaultChildSelectionListener.OnCenterItemClickListener() {

@Override

public voidonCenterItemClicked(@NonNullfinalRecyclerViewrecyclerView,@NonNullfinalCarouselLayoutManagercarouselLayoutManager,@NonNullfinalViewv) {

final intposition= recyclerView.getChildLayoutPosition(v);

 

},recyclerView,layoutManager);

 

 

//item点击监听

 

layoutManager.addOnItemSelectionListener(newCarouselLayoutManager.OnCenterItemSelectionListener() {

@Override

public voidonCenterItemChanged(final intadapterPosition) {

if(CarouselLayoutManager.INVALID_POSITION!= adapterPosition) {

 

}

}

});

 

到此就可以完事了  大家回去多家联系联系  因为我也忘记原demo在哪里了(好像是在 IT蓝豹里找的) 因为我这个是项目里的 所以我就懒得写demo了 大家也可以试试在github上搜索  carousellayoutmanager 没准就可以找到  之后下载demo 改一些坑就可以用了

大功告成!!!!!


以上是关于RecyclerView实现终极画廊效果 中间突出并且压住两侧布局的主要内容,如果未能解决你的问题,请参考以下文章

RecyclerView.ItemAnimator终极解读--继承DefaultItemAnimator实现自定义动画

android 卡片画廊效果及RecycleView、ViewPager、ScrollView之前的冲突解决

Android-RecyclerView系列 RecyclerView实现Item居中效果

利用ViewPager实现3D画廊效果及其图片加载优化

android点击画廊某张图片,目的使整个画廊放大,所点击的图片仍放中间,这个效果怎么设置

android ViewPager 进阶(仿画廊/图书翻页) 与 palette 使用 (含完整Demo)