Back to project page AndroidSwipeLayout.
The source code is released under:
MIT License
If you think the Android project AndroidSwipeLayout listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.daimajia.swipe.interfaces; //from w w w. j av a2 s.c om import com.daimajia.swipe.SwipeLayout; import com.daimajia.swipe.implments.SwipeItemMangerImpl; import java.util.List; public interface SwipeItemMangerInterface { public void openItem(int position); public void closeItem(int position); public void closeAllExcept(SwipeLayout layout); public List<Integer> getOpenItems(); public List<SwipeLayout> getOpenLayouts(); public void removeShownLayouts(SwipeLayout layout); public boolean isOpen(int position); public SwipeItemMangerImpl.Mode getMode(); public void setMode(SwipeItemMangerImpl.Mode mode); }