ASwipeLayout一个强大的侧滑菜单控件

发布时间:2019-06-23 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了ASwipeLayout一个强大的侧滑菜单控件脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

前言

该控件的优点:

  • 1.无论是在RecyclerView,ListView,还是LinearLayout等,只要是ViewGroup用该控件都能实现侧滑。
  • 2.控件的手势滑动冲突已解决,不会出现嵌套到ScrollView等控件出现滑动不流畅的情况
  • 3.控件使用简单,只需要在XMl外套一层该控件就好了,秒接入
  • 4.点击事件很方便,原来什么写法就什么写法

APK下载地址

ASwipeLayout一个强大的侧滑菜单控件

1.效果图

ASwipeLayout一个强大的侧滑菜单控件

ASwipeLayout一个强大的侧滑菜单控件

2.使用方式其实挺简单的,在设计的时候,就是想着怎么简单怎么来

2.1引入库:

Step 1. Add IT in your root build.gradle at the end of repositories:
    allPRojects {
        repositories {
            ...
            maven { url 'https://JITpack.io' }
        }
    }
Step 2. Add the dePEndency

    dependencies {
            implementation 'com.github.WelliJohn:ASwipeLayout:0.0.2'
    }

2.2在需要侧滑的布局的根布局中添加下面这段代码,注意注释的地方才是可以定制的:

<?xML version="1.0" encoding="utf-8"?>
<wellijohn.org.swipevg.ASwipeLayout >"http://schemas.andROId.COM/apk/res/android"
    >"http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">


    <LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FFFFFF"
        android:orientation="horizontal">

        //在这里是实现你的主item的东西,根据你们的项目随便添加
    </LinearLayout>

    <LinearLayout
        android:id="@+id/right_menu_content"
        android:layout_width="wrap_content"
        android:layout_height="match_parent">
 
        //在这里是实现右侧的菜单,根据你们的项目随便添加
    </LinearLayout>


</wellijohn.org.swipevg.SwipeLayout>

注意在这里ll_content,right_menu_content是一定要的,这个id对应的布局不要自己去改变,以后有需要会放开,目前的话,一般的情况你们只需要定制主item的内容和右侧菜单栏了,在这里我也省去了定义一些额外的自定义view了,单纯就是用id,来区分主item和右侧的菜单。

3.因为RecyclerView中有复用Item的情况,针对这种情况的解决方案

因为item复用会使得当我们滑出某个menu的时候,再进行RecyclerView的上下滑动时,会使得其他的Item也滑出了menu,这就是item复用导致了布局错乱,所以针对这类型的问题的话,我在这里已经提供了OnSwipeStateChangeListener接口,在这里你们可以记录下滑动的状态,在onBindViewHolder方法里面,根据状态来设定Item是打开menu还是关闭menu:

 @override
    public void onBindViewHolder(ViewHolder holder, int position) {

        final Person person = mDatas.get(position);
        holder.scrollDelLl.setOpen(person.isOpen());

        holder.scrollDelLl.setOnSwipestateChangeListener(new OnSwipeStateChangeListener() {
            @Override
            public void onSwipeStateChange(boolean open) {
                person.setOpen(open);
            }
        });

    }

如上代码就可以解决Item复用导致布局错乱的问题了(粑粑再也不用担心RecyclerView复用的问题了)。

4.如果你们在项目使用的过程中,有心得需求或者是bug的话,可以在github上提你们的需求或者issue

5.代码已上传github,ASwipeLayout

脚本宝典总结

以上是脚本宝典为你收集整理的ASwipeLayout一个强大的侧滑菜单控件全部内容,希望文章能够帮你解决ASwipeLayout一个强大的侧滑菜单控件所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。