首页 > 代码库 > SwipeListView

SwipeListView

 

 

https://github.com/47deg/android-swipelistview

https://github.com/47deg/android-swipelistview-sample/

 

 


 

 

 

  • swipeFrontView -ListView Item正常显示的控件Id,且必须与Item的布局文件中的控件id一样
  • swipeBackView - 手指滑动时显示的,隐藏在FrontView后面,且必须与item的布局文件中控件Id一样
  • swipeActionLeft - 左滑的动作,默认reveal,即显示BackView,还有dismiss,choice会触发响应的方法。
  • swipeActionRight - 右滑动作,其他同上
  • swipeMode - Default: ‘both‘ 设置左滑、右滑、都支持
  • swipeCloseAllItemsWhenMoveList - 当滚动listview时,关闭所有展开的Item,最好不要设置为false,由于item的   
  •  复用,false存在一些问题。
  • swipeOpenOnLongPress - Default: ‘true‘ 长按时触发显示
  • swipeAnimationTime - 动画时间长度
  • swipeOffsetLeft - left offset 左偏移量
  • swipeOffsetRight - right offset 右偏移量

SwipeListView