Skip to content

qdxxxx/SwipeMenuContainer

Repository files navigation

SwipeMenuContainer


仿QQ向左滑动弹出菜单的布局.

image


Download

https://fir.im/6q2m


集成方式

  • 注入依赖 Step 1. Add the JitPack repository to your build file Step 2. Add the dependency
	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
	dependencies {
 	   compile 'com.github.qdxxxx:SwipeMenuContainer:v1.0.3'
	}

Layout

    <qdx.swipemenucontainer.SwipeMenuLayout
        android:layout_width="match_parent"
        android:layout_height="70dp"
        qdx:isLeftMenu="false"     //false(右侧是菜单),true(左侧是菜单)    
       ...
        />


普通RecyclerView item.

image


多种itemType

image

长按拖拽

需要设置enableParentLongClick(tren)允许父类拖拽.

image

多级item

image

方法及属性介绍


name format 中文解释
isLeftMenu             boolean 菜单是否在内容左边(如果在左边,则右滑)
enableParentLongClick boolean   允许父类长按(此时内容就会被拦截down事件)                    
expandRatio           float   菜单能够自动打开的阈值
expandDuration       integer     菜单展开动画时间
collapseRatio           float             菜单能够自动关闭的阈值
collapseDuration       integer 菜单关闭动画时间
collapseInstant       void     不显示动画,关闭菜单
collapseSmooth       void     平滑关闭菜单
expandSmooth       void     平滑打开菜单

THANKS


借鉴SwipeDelMenuLayout

超强的BaseRecyclerViewAdapterHelper


Artical


博客详解文章http://blog.csdn.net/qian520ao/article/details/77587904

License


MIT License

Copyright (c) 2017 qdx

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.