Back to project page SwipeBackLayout.
The source code is released under:
Apache License
If you think the Android project SwipeBackLayout 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 me.imid.swipebacklayout.lib.app; /*from w ww . j a va 2 s . c o m*/ import me.imid.swipebacklayout.lib.SwipeBackLayout; /** * @author Yrom */ public interface SwipeBackActivityBase { /** * @return the SwipeBackLayout associated with this activity. */ public abstract SwipeBackLayout getSwipeBackLayout(); public abstract void setSwipeBackEnable(boolean enable); /** * Scroll out contentView and finish the activity */ public abstract void scrollToFinishActivity(); }