支持左滑菜单栏的 RecyclerView

iOS 有一个自己的交互方式,左滑菜单栏的数据列表,手机 QQ 也是这样的交互方式,但是 Android 自身却没有这样的控件,需要我们自己去封装,笔者这里封装了一个简易版的,需要自取。

先放效果图
在这里插入图片描述

优点

轻量:该库比较轻量,不会因为引库导致应用庞杂

简单:使用简单,Activity 内只需要几行代码实现

依赖

  • 克隆本项目,然后在你的 IDE 中依赖本项目的 slide_recyclerview Module

  • 使用 maven 方式依赖

​ 在根目录的 build.gradle 中添加:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

​ 在 app 或者要使用的 Module 的 build.gradle 中添加:

implementation 'com.github.YoungTime:SlideRecyclerview:1.0.1'

用法

  1. 在布局文件中使用 SlideRecyclerview:
<com.ryan.slide_recyclerview.SlideRecyclerView
        app:layout_constraintTop_toTopOf="parent"
        android:id="@+id/jsr_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:item_margin_bottom="2dp"
        app:item_margin_right="10dp"
        app:item_margin_left="10dp"
        app:item_padding_right="10dp"
        app:item_background="#FAFD"/>
  1. 继承 SlideViewAdapter,并实现方法:
public class MyAdapter extends SlideViewAdapter<MsgEntity> {
   

    /**
     * MsgEntity 为你的数据源数据类型
     */
    private List<MsgEntity> mDatas; // 数据源
    private Context mContext;

    public MyAdapter(List<MsgEntity> mDatas, Context mContext) {
   
        this.mDatas = mDatas;
        this.mContext = mContext;
    }

    /**
     * @return 你需要在 Item 中使用的数据列表
     */
    @Override
    protected List
使用SwipeLayout实现左滑出现菜单栏,可以按照以下步骤进行: 1. 在布局文件中添加SwipeLayout控件,设置其宽高和位置等属性。 2. 在SwipeLayout中添加两个子控件,一个是主要显示内容的布局,另一个是菜单栏的布局。 3. 设置SwipeLayout的滑动方向为左滑。 4. 为SwipeLayout设置OnSwipeListener监听器,监听滑动事件。 5. 在滑动事件中判断当前滑动的状态,如果是打开状态,则关闭菜单栏,否则打开菜单栏。 例如,以下是一个简单的示例代码: ``` <com.daimajia.swipe.SwipeLayout android:id="@+id/swipe_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:layout_marginBottom="10dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" app:drag_edge="left" app:swipe_mode="left" app:leftSwipeView="@+id/left_swipe" app:rightSwipeView="@+id/right_swipe" app:show_mode="lay_down"> <RelativeLayout android:id="@+id/main_content" android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- 主要显示内容的布局 --> </RelativeLayout> <LinearLayout android:id="@+id/left_swipe" android:layout_width="80dp" android:layout_height="match_parent" android:orientation="vertical"> <!-- 菜单栏的布局 --> </LinearLayout> </com.daimajia.swipe.SwipeLayout> ``` ``` SwipeLayout swipeLayout = (SwipeLayout) findViewById(R.id.swipe_layout); swipeLayout.setShowMode(SwipeLayout.ShowMode.LayDown); swipeLayout.addDrag(SwipeLayout.DragEdge.Left, findViewById(R.id.left_swipe)); swipeLayout.addDrag(SwipeLayout.DragEdge.Right, findViewById(R.id.right_swipe)); swipeLayout.addSwipeListener(new SwipeLayout.SwipeListener() { @Override public void onStartOpen(SwipeLayout layout) { // 打开菜单栏 } @Override public void onOpen(SwipeLayout layout) { // 菜单栏已经打开 } @Override public void onStartClose(SwipeLayout layout) { // 关闭菜单栏 } @Override public void onClose(SwipeLayout layout) { // 菜单栏已经关闭 } @Override public void onUpdate(SwipeLayout layout, int leftOffset, int topOffset) { // 滑动中 } @Override public void onHandRelease(SwipeLayout layout, float xvel, float yvel) { // 手指离开 } }); ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值