package com.martin.simpledevelop.widget.swipebacklayout; /** * Created by Martin on 2015/8/18. */ 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(); }