自定义LayoutManager,实现RecyclerView折叠效果

本文介绍了如何通过自定义LayoutManager实现RecyclerView的折叠与展开效果。分析了两种状态,展开状态类似LinearLayoutManager,折叠状态则需自定义。并提到了参考的Android自定义LayoutManager教程及卡牌堆叠滑动效果。
摘要由CSDN通过智能技术生成

少废话,先看效果图!

在这里插入图片描述

分析

根据效果图我们不难看出:我们需要实现列表的折叠与展开的效果,也就是说RecylerView需要有两个状态:一个是展开状态,其实展开状态就是常规的LinearLayoutManager;另外一个是折叠的状态,这个就需要我们自定义LayoutManger实现了。

实现

public class StackLayoutManager extends RecyclerView.LayoutManager {

    private static final String TAG = "StackLayoutManager";

    private static final int MAX_SHOW_COUNT = 3;

    private static final int CARD_VERTICAL_GAP = 20;

    private Context mContext;

    private Rect mViewInfo;

    public StackLayoutManager(Context context) {
        mContext = context;
    }


    @Override
    public RecyclerView.LayoutParams generateDefaultLayoutParams() {
        return new RecyclerView.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTE
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值