package com.xinxin.everyxday.widget.swipeback; /** * @author Yrom */ public interface SwipeBackActivityBase { /** * @return the SwipeBackLayout associated with this activity. */ public abstract com.xinxin.everyxday.widget.swipeback.SwipeBackLayout getSwipeBackLayout(); public abstract void setSwipeBackEnable(boolean enable); /** * Scroll out contentView and finish the activity */ public abstract void scrollToFinishActivity(); }